body{
  font-family: Helvetica;
  /*font-weight: bold;*/
}


.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}


.container-fluid{
  background-color: #ffffff;
}

footer{
  text-align: center;
  color: #18230F;
}

/* The logo animation code */
@keyframes expand {
  0%   { max-width: 0%;}
  5%   { max-width: 5%;}
  50%  { max-width: 50%;}
  100% { max-width: 100%;}
}

.logo_img {
  max-width: 0%;
  height: auto;
  animation-name: expand;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-delay: .3s;
  -webkit-animation-fill-mode: forwards;
}

.container{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align: center;
  flex-direction: column;
  min-height: 83vh;
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 70px;
  height: 70px;
  margin-right: 10px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}
.site-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  color: #18230F;
}
.site-title:hover {

  color:#27391C;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #18230F;
  font-weight: 500;
  transition: color 0.3s;
  padding-left:10px;
  padding-right:10px
}

nav a:hover {
  color: #27391C;
}

main {
  text-align: center;
  padding: 100px 20px;
}

.cta_container{
  padding-top: 25px;
  padding-bottom: 25px;
  
}

.cta {
  opacity: 0;
  font-family:  "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 52px;
  color: #18230F;
 
  animation-name: fadeIn;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 2s;
}


/* The text bounce in code */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
  
}

.cta-button {
  opacity: 0;
  padding: 15px 30px;
  font-size: 18px;
  background-color: #255F38;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: Helvetica;

  animation-name: fadeIn;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 3s;
}

.cta-button:hover {
  background-color: #1F7D53;
}

.about-cta-button {
  opacity: 0;
  padding: 15px 30px;
  font-size: 18px;
  background-color: #255F38;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: Helvetica;

  animation-name: fadeIn;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 1s;
}

.about-cta-button:hover {
  background-color: #1F7D53;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
}

.about-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  line-height: 1.7;
  text-align: left;
}

.about-container h1 {
  color: #27391C;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}


.about-container h2 {
  font-size: 24px;
  color: #27391C;
  margin-top: 30px;
}

.about-container p {
  margin-bottom: 20px;
  font-size: 17px;
}

.about-container ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.about-container ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-page {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-intro {
      text-align: center;
      margin-bottom: 40px;
      font-size: 18px;
      line-height: 1.6;
    }

  .contact-page h1{
  color: #27391C;
  font-size: 36px;
  margin-bottom: 20px;
}

 .contact-intro p{
  text-align: left;
}

    .office-section {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 20px;
      
    }



    .office-info {
      flex: 1;
      min-width: 280px;
    }

    .map-container {
      flex: 1;
      min-width: 280px;
      height: 250px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 10px;
    }

    .form-container {
      flex: 1;
      min-width: 350px;
    }

    .form-container form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .form-container input,
    .form-container textarea {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .form-container button {
      padding: 10px;
      font-size: 16px;
      background-color: #255F38;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .form-container button:hover {
      background-color: #1F7D53;
    }

    .discretion {
      margin-top: 60px;
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 10px;
    }

    .discretion h3 {
      color: #18230F;
      font-size: 24px;
      margin-bottom: 15px;
    }

    .discretion p {
      font-size: 16px;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .office-section {
        flex-direction: column;
      }
    }