
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Grey Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(120, 120, 120, 0.75);
}

/* Content */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
.info-section,
.mission-section {
  padding: 40px 8%;
  background: #FAF8F2;
}

.info-grid,
.mission-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* IMAGE BOX */
.image-box {
  flex: 1;
  background: #D9D9D9;
  padding: 20px;
  border-radius: 14px;
  position: relative;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
}

/* STATS */
.stats {
  position: absolute;
  left: -30px;
  top: 20px;
  display: grid;
  gap: 15px;
}

.stat {
  background: white;
  padding: 5px;
  border-radius: 8px;
  width: 120px;
}

.stat h3 {
  color: #C9A24D;
}

/* CONTENT */
.content-box {
  flex: 1;
}

.tagline {
  font-size: 0.85rem;
  color: #C9A24D;
}

.content-box h2 {
  font-size: 2rem;
  margin: 15px 0;
}

.actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  background: #C9A24D;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.icons span {
  background: #F1E6C8;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.icons {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.icons a {
  width: 40px;
  height: 40px;
  background: goldenrod;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
}

.icons a:hover {
  background: #222;
  transform: translateY(-4px);
}


/* MISSION */
.mission-text {
  flex: 1;
}

.mission-cards {
  flex: 1;
  display: grid;
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* BUTTONS */
.btn-link {
  background: transparent;
  border: none;
  color: #C9A24D;
  margin-left: 15px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .info-grid,
  .mission-grid {
    flex-direction: column;
  }

  .stats {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}


/* FAQ SECTION */
/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #3b2f1e;
}

.faq-subtitle {
    color: #7a6a4f;
    /* max-width: 500px; */
}

/* ===== Accordion ===== */

.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 20px;
}

.custom-accordion .accordion-header {
    background: #fff5dc;
    border-radius: 20px;
}

.custom-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 600;
    padding: 25px;
    border-radius: 20px;
    color: #3b2f1e;
}

.custom-accordion .accordion-button::after {
    display: none;
}

.custom-accordion .icon {
    width: 34px;
    height: 34px;
    background: #d4af62;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #fff3cc;
}

/* body */

.accordion-body {
    background: #fff8e6;
    border-radius: 0 0 20px 20px;
    padding: 20px 25px;
    color: #6a5a3a;
}

/* ===== Image ===== */

.faq-image {
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

/* ===== Mobile ===== */

@media(max-width: 768px) {

    .faq-title {
        font-size: 2.3rem;
    }

    .faq-section {
        padding: 50px 0;
    }

}