  /* ================= BASE STYLES ================= */
  :root {
    --primary-color: #006400;
    --primary-dark: #004d00;
    --accent-color: #ff4d4d;
    --text-light: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}
  /* NAVBAR, CAROUSEL, NEWS SECTION BACKGROUND */
  .top-sections {
    background: url('../background/bgtop.png') no-repeat center top/cover;
    width: 100%;
    height: 100vh;
    max-height: 800px;
    padding-top: 50px;
    position: relative;
    overflow: visible;
}

.main-content {
    display: flex;
    flex-direction: column;
    position: relative;
}
 
   .section {
    border-top: solid 4px green;
      width: 100%;
      margin: 0 auto;
      background: #fff;
      padding: 40px 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .location-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .map-container {
      flex: 1;
      height: 400px;
      border: 2px solid green;
      border-radius: 12px;
      overflow: hidden;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .location-info {
      flex: 1;
      text-align: center;
    }

    .location-title {
      font-size: 30px;
      font-weight: bold;
      color: #007b2f;
      align-items: center;
      gap: 8px; 
      margin-bottom: 80px;
    }

    .location-title::before {
      content: "📍";
      font-size: 30px;
    }

    .location-description {
      font-size: 25px;
      line-height: 1.5;
    }

        .footer {
          background: url(../background/bgbot.png)no-repeat center top/cover;
          background-size: cover;
          background-position: center;
          color: white;
          padding: 10px 10px 40px 60px;
          display: flex;
          flex-direction: column;
          align-items: center;
          font-size: 25px;
          min-height:   100px;
      }
      .footer-content {
          display: flex;
          justify-content: space-between;
          width: 90%;
          flex-wrap: wrap;
          gap: 40px;
      }

      .footer-left {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          font-size: inherit;
      }

      .logo-container {
          display: flex;
          gap: 20px;
          margin-bottom: 20px;
          left:20px;  
      }

      .logo-container img {
          width: 70px;
          height: 70px;
          border-radius: 50%;
      }

      .footer-right {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
      }

      .footer-right .contact-heading {
          width: 100%;
          text-align: center;
          margin-bottom: 25px;
          font-size: 25px;
      }

      .footer-right .contact-row {
          display: flex;
          align-items: center;
          margin-bottom: 15px;
          gap: 15px;
      }

      .footer-right .contact-icon {
          width: 25px;
          height: 25px;
          object-fit: contain;
      }

      .footer-right a {
          color: white;
          text-decoration: none;
      }

      .footer-right a:hover {
          text-decoration: underline;
      }

      .footer-left div {
          margin-top: 20px;
      }

      .footer-left p,
      .footer-right p {
          margin-bottom: 25px;
          font-size: 18px;
      }
  .footer-left p{
    text-align: center;
    position: relative;
    right: 15%;
    font-size: 20px;
  }
  .footer-right .contact-row {  
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
  }

  .footer-right .contact-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }
    /* Add to <style> section: */
.logo-title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}