* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      color: #333;
      overflow-x: hidden;
    }
    .site-header {
       background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('./images/31149830_7773612.jpg') center/cover no-repeat;
    margin-top: 50px;
    height: 500px;
    }
    .header-ctas{
      margin-top: 10px;
    }
    /* Contact Section */
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: -1rem auto 4rem;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      position: relative;
      z-index: 10;
      transition: transform 0.3s ease;
    }

    .contact-container:hover {
      transform: translateY(-5px);
    }

    .contact-info {
      flex: 1;
      background: #0a7a48;
      color: #fff;
      padding: 2.8rem;
      min-width: 300px;
      animation: slideInLeft 1s ease;
    }

    @keyframes slideInLeft {
      from {opacity: 0; transform: translateX(-50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    .contact-info h2 {
      margin-bottom: 1.5rem;
      font-size: 2rem;
      font-weight: 600;
    }

    .info-item {
      margin-bottom: 1.3rem;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .info-item:hover {
      transform: translateX(5px);
    }

    .info-item i {
      background: #f68b1e;
      color: #fff;
      border-radius: 50%;
      padding: 10px;
      margin-right: 15px;
      font-size: 1.1rem;
    }

    .contact-info p, .contact-info a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
    }

    .social-links {
      margin-top: 2.5rem;
    }

    .social-links a {
      margin-right: 15px;
      font-size: 1.5rem;
      color: #fff;
      transition: transform 0.3s, color 0.3s;
    }

    .social-links a:hover {
      transform: translateY(-5px);
      color: #f68b1e;
    }

    .contact-form {
      flex: 2;
      padding: 2.8rem;
      min-width: 350px;
      animation: slideInRight 1s ease;
    }

    @keyframes slideInRight {
      from {opacity: 0; transform: translateX(50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    .contact-form h2 {
      font-size: 2rem;
      color: #0a7a48;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    form {
      display: flex;
      flex-direction: column;
    }

    input, select, textarea {
      margin-bottom: 1rem;
      padding: 12px 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      outline: none;
      transition: 0.3s;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #f68b1e;
      box-shadow: 0 0 6px rgba(246,139,30,0.4);
    }

    button {
      background: linear-gradient(90deg, #0a7a48, #f68b1e);
      color: #fff;
      border: none;
      padding: 12px;
      font-size: 1.1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      transform: scale(1.03);
      opacity: 0.9;
    }

    .message {
      margin-top: 10px;
      font-weight: 500;
      display: none;
      color: #0a7a48;
      text-align: center;
    }

    /* FAQ Section */
    .faq-section {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 2rem;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .faq-section h2 {
      text-align: center;
      color: #0a7a48;
      margin-bottom: 2rem;
    }

    details {
      background: #f7f8f7;
      margin-bottom: 1rem;
      padding: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    details:hover {
      background: #eef9f1;
    }

    summary {
      font-weight: 600;
      color: #333;
    }

    details p {
      margin-top: 0.8rem;
      color: #555;
    }

    /* Map */
    .map-section {
      max-width: 1100px;
      margin: 3rem auto;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    iframe {
      width: 100%;
      height: 350px;
      border: 0;
    }

    /* CTA */
    .cta-section {
      text-align: center;
      background: linear-gradient(90deg, #0a7a48, #f68b1e);
      color: #fff;
      padding: 3rem 1rem;
      margin-top: 4rem;
    }

    .cta-section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .cta-section p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .cta-section a {
      background: #fff;
      color: #0a7a48;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.3s;
    }

    .cta-section a:hover {
      transform: scale(1.05);
    }

    /* Responsive */
    @media(max-width: 900px) {
      .contact-container {
        flex-direction: column;
      }
      .contact-info, .contact-form {
        width: 100%;
      }
      .cta-section h2 {
        font-size: 1.6rem;
      }
    }