/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #e2dddd;
  color: #333;
}

/* Header container */
header {
  background-color: #ffffff;
  color: #333;
  padding: 10px;
  position: relative; /* Required for hamburger menu */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo container */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 100px; /* Adjust size as needed */
  height: auto;
  margin-right: 15px;
}

/* Navigation */
nav ul {
  list-style-type: none;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hamburger menu icon (only visible on small screens) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto; /* Pushes the hamburger to the right */
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px;
}

/* Responsive Layout - Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .header-content {
      padding: 0 10px;
  }

  /* Shrink logo size for mobile */
  .logo {
      width: 80px;
  }

  /* Hide the navigation links and show the hamburger menu */
  nav ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 10px;
      background-color: #fff;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  nav ul li {
      margin: 10px 0;
  }

  nav ul li a {
      color: #333;
  }

  /* Show the hamburger icon */
  .hamburger {
      display: flex;
  }

  /* When the hamburger is active, display the navigation */
  .hamburger.active + nav ul {
      display: flex;
  }
}

/* Main content styles */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 80px;
  background-color: rgb(47, 45, 81);
}


/* Footer */


/* Responsive Layout for Main Content */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }

  .text-content, .image-content {
      padding: 10px 0;
  }

  .image-content {
      justify-content: center;
  }
}

.section-title {
  background-color: #2F2D51;
  color: white;
  padding: 5px 10px;
  width: 80%;
  border-radius: 5px;
  text-align: left;
  font-family: Arial, sans-serif;
  margin: 0 auto; /* Remove default margin */
  margin-top: 10px;
  margin-bottom: 30px;
  height: 50px; /* Fixed height */
  line-height: 50px; /* Vertically center the text */
  font-size: 28px;
}



i {
    color: red;  /* PDF icons are typically red */
}

o{
    color: #2F2D51;
    padding-left: 85%;
   
      /* Change the icon color */
  }
  
  @media only screen and (max-width: 600px) {
    o{
      color: #2F2D51;
      padding-left: 40%;
      
        /* Change the icon color */
    }
  }
  
  @media only screen and (min-width: 601px) and (max-width: 1024px) {
    o{
      color: #2F2D51;
      padding-left: 70%;
      
        /* Change the icon color */
    }
  }
  


.container2 {
  width: 80%; /* Set a width for the container */
  margin: 0 auto; /* Center the container */
  padding: 20px;
}

.notescont {
    background-color: #807f83;
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    width: 80%;
    text-align: left;
    font-family: Arial, sans-serif;
    margin: 0 auto; /* Remove default margin */
    height: 50px; /* Fixed height */
    line-height: 50px; /* Vertically center the text */
    font-size: 15px;
  }

  .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-icons li {
    
    margin: 0 10px;
  }
  
  /* Style the social media icons */
  .social-icons a img {
    margin-top: 15px;
    width: 40px; /* Adjust the icon size as needed */
    height: 40px;
    border: none;
  }


  .container5 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30vh;
}

.image-container {
  margin: 0 auto;
  width: 100%; /* Change from vh to % to make it responsive */
  height: auto; /* Let the height adjust automatically based on content */
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 400px; /* Set a max width for larger screens */
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media query for smaller mobile devices */
@media (max-width: 600px) {
  .image-container {
    width: 90%; /* Make sure it fits well on smaller screens */
    max-width: 100%;
  }
}


.justify {
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-word;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
  .justify {
    padding-left: 20px; /* Reduce padding for mobile */
    padding-right: 20px; /* Reduce padding for mobile */
  }
}

.times-new-roman {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px; /* Adjust the size as needed */
}

h1{
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
}

.footer {
 
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  background-color: #2F2D51;
  color: white;

}
.footer-logo img {
  max-width: 150px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}
.footer-paragraph {
  text-align: center;
  flex-grow: 1;
  margin: 0 20px;
}