body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
  }
  
  header {
    background-color: #797979;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 60px; /* Default logo height */
    max-height: 100px; /* Ensures it doesn't grow too large */
    width: auto; /* Maintains aspect ratio */
    object-fit: contain; /* Ensures the logo fits neatly without distortion */
  }
  
  nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
  }
  
  @media (max-width: 1024px) {
    .logo img {
      height: 50px; /* Slightly smaller for medium screens */
    }
    
    nav ul li a {
      font-size: 14px; /* Adjust font size for smaller screens */
    }
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logo {
      margin-bottom: 10px; /* Adds spacing below the logo */
    }
  
    .logo img {
      height: 40px; /* Smaller size for mobile */
    }
  
    nav ul {
      flex-direction: column;
      padding-top: 10px;
    }
  
    nav ul li {
      margin: 5px 0;
    }
  
    nav ul li a {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .logo img {
      height: 35px; /* Ensure readability on very small screens */
    }
  
    nav ul li a {
      font-size: 12px; /* Compact font size for better fit */
    }
  }
  
  
  .hero {
    position: relative;
    background: url("media/hero.JPG") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
  }
  
  @media (max-width: 768px) {
    .hero .content {
      padding-top: 80px;
    }
  }
  
  .hero .logo {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .hero h2 {
    font-size: 2em;
    color: #5eecff;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2em;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2em;
    }
  
    .hero p {
      font-size: 1em;
    }
  }
  
  .about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
    background-image: url("background-leaves.png");
    background-size: cover;
    background-position: center;
  }
  
  .about-content {
    display: flex;
    max-width: 1200px;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-text {
    padding: 40px 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
  }
  
  .badge {
    background-color: #ffd700;
    color: #333;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.1em;
    width: fit-content;
  }
  
  .about-text h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
  }
  
  .about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
  }
  
  .know-more-btn {
    display: inline-block;
    background-color: #006e3e;
    color: white;
    padding: 12px 28px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.1em;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    width: fit-content;
  }
  
  .know-more-btn:hover {
    background-color: #004f2a;
  }
  
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }
  
    .about-text {
      padding: 20px;
    }
  
    .about-text h1 {
      font-size: 2em;
    }
  
    .about-text p {
      font-size: 1em;
    }
  }
  
  .strategies-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
  }
  
  .strategies-header {
    text-align: left;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: 20px;
  }
  
  .strategies-header h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
  
  .strategies-header p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
  }
  
  .strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0 20px;
    margin-top: 30px;
  }
  
  .strategy-card {
    border-radius: 8px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .strategy-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  
  .card-content h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .card-content p {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .card-content a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
  }
  
  .card-content a:hover {
    color: #ddd;
    border-color: #ddd;
  }
  
  .strategy-card:hover {
    transform: translateY(-5px);
  }
  
  .blue-card {
    background-color: #1a73e8;
  }
  
  .orange-card {
    background-color: #ff7043;
  }
  
  .light-blue-card {
    background-color: #4fc3f7;
  }
  
  .yellow-card {
    background-color: #ffeb3b;
    color: #333;
  }
  
  .yellow-card .card-content a {
    color: #333;
    border-color: #333;
  }
  
  .yellow-card .card-content a:hover {
    color: #555;
    border-color: #555;
  }
  
  @media (max-width: 600px) {
    .strategies-grid {
      grid-template-columns: 1fr;
      padding: 0 10px;
      gap: 15px;
      margin-top: 10px;
    }
  
    .strategy-card img {
      height: 120px;
    }
  
    .card-content h2 {
      font-size: 1.2em;
    }
  
    .card-content p {
      font-size: 0.9em;
    }
  }

/* Meet the team */
.team-section {
    text-align: center;
    padding: 50px 20px;
    color: #333;
}

.team-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 300px;
    text-align: left;
    margin: 10px;
}

.team-member img {
    width: 100%;
    height: 250px; /* Fixed height */
    object-fit: cover; /* Maintain aspect ratio, cover the area */
}

.team-member h2 {
    font-size: 24px;
    margin: 10px;
}

.team-member p {
    font-size: 14px;
    margin: 10px;
}

.team-member p:last-child {
    font-weight: bold;
}


/* Latest News */

.news-section {
    text-align: center;
    padding: 50px 20px;
    color: #333;
}

.news-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.news-item {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* Ensure equal height */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    margin: 10px;
}

.news-image {
    flex: 1; /* Make the image container flexible */
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio */
}

.news-content {
    flex: 2; /* Make the text container flexible */
    padding: 20px;
    text-align: left;
}

.news-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
}

.read-more-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.read-more-button:hover {
  background-color: #0056b3;
}


/* Footer */
.footer {
    background-color: #3f6b7f; /* Background for footer */
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 100px; /* Adjust logo size */
    height: auto;
}

.footer-navigation, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
}

.footer-navigation h3, .footer-contact h3, .footer-social h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #da442d; /* Red color for headings */
}

.footer-navigation ul {
    list-style-type: none;
    padding: 0;
}

.footer-navigation ul li {
    margin-bottom: 5px;
}

.footer-navigation ul li a {
    color: #ffffff; 
    text-decoration: none;
}

.footer-navigation ul li a:hover {
    text-decoration: underline;
}

.footer-contact p, .footer-social p {
    margin: 0;
    color: #ECF0F1; /* Light color for text */
}

.footer-social a {
  display: flex;
  align-items: center;
  margin: 5px 0;
  color: #ECF0F1; 
  text-decoration: none;
  font-size: 14px;
}

.footer-social a:hover {
  color: #3498DB; 
}

.footer-social i {
  font-size: 18px; 
  margin-right: 10px;
  color: #E74C3C; 
}
