/* Hero Section */
    .hero {
      background: #fff0da;
      color: #333;
      text-align: center;
      padding: 60px 20px;
    }

    .hero h1 {
      font-size: 3em;
    }

    /* Info Boxes */
    .info-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 40px 0;
      justify-content: space-between;
    }

    .info-box {
      background: #fff;
      flex: 1 1 calc(25% - 20px);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
    }

    .info-box h3 {
      margin-bottom: 10px;
      color: #ff9900;
    }

    /* Contact & Map */
    .contact-map-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
    }

    .contact-form, .map {
      background: #fff;
      flex: 1 1 48%;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .contact-form h2 {
      margin-bottom: 15px;
      color: #ff9900;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      margin-bottom: 15px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .contact-form button {
      background: #ff9900;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
    }
    .contact-form button:hover{
      background: #db8400;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .info-boxes, .contact-map-container {
        flex-direction: column;
      }

      .info-box, .contact-form, .map {
        flex: 1 1 100%;
      }
    }

    /* Social Media Links */
  .social-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(to right, #ffe6c0 0%, #ffb766 50%, #ffe6c0);
  }

  .social-card {
    flex: 1 1 150px;
    max-width: 180px;
    min-width: 120px;
    aspect-ratio: 1/1;
    background: rgb(252, 249, 249);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-align: center;
  }

  .social-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    fill: #333;
    filter: grayscale(1) brightness(0.6);
  }

  .social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .social-card span {
    font-weight: 600;
    color: #333;
  }

/* Responsive for mobile */
@media (max-width: 768px) {
  .social-card {
    flex: 1 1 100%;
    max-width: 100%;
    height: 110px;
  }
}
