  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
  }
  
  :root {
    --primary-green: #2d5f4d;
    --secondary-blue: #0ab23a;
    --accent-white: #f8f9fa;
  }

  
  html {
    scroll-behavior: smooth;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--primary-green);
    background: var(--accent-white);
    width: 100%;
    border-bottom: 2px solid var(--primary-green);
  }
  .logo-section {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
  }
  .nav-links button {
    border: none;
    padding: 0.7rem 2rem;
    cursor: pointer;
  }
  
.nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 0;
    background: var(--secondary-blue);
    transition: width 0.3s ease, left 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
    left: 0;
  }
  .nav-links a:hover {
    color: var(--secondary-blue);
  }

  section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    flex-wrap: wrap;
  }

  .image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 10px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
  }
  
  .image-container:hover img {
    transform: scale(1.04);
  }
  
  .title-overlay {
    font-size: 1.5rem;
    font-weight: 600;
    /* height: 35vh; */
    height:400px;
    overflow-y: scroll;
   
   
  }
  
  .location-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  }
  
  .text {
    flex: 1;
    min-width: 280px;
    margin: 20px;
  }
  
  .text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  
footer {
    background: #333;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
  }
  
  footer h3{
    color: var(--accent-white);
  }
  footer div {
    margin: 10px;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s, border-bottom 0.3s;
    position: relative;
  }
  
   footer a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #006d04;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
    footer a:hover {
    transform: scale(1.1);
    color: #0a6100;
  }
  
  a:hover::after {
    width: 100%;
  }
  
  .social-icons img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  
  .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    section {
      flex-direction: column;
      text-align: center;
    }
  
    .text {
      margin-top: 20px;
    }
  }