.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-primary-dark);
}

.section-label::before,
.section-label::after {
  content: "";
  width: 64px;
  height: 1px;
  background: rgb(229, 229, 229);
}

.section-label span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  white-space: nowrap;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: rgb(12, 92, 93);
  color: var(--color-white);
}

.btn-cta {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-yellow {
  background: var(--color-yellow);
  color: var(--color-text);
  font-weight: 600;
}

.btn-dark {
  background: rgb(51, 51, 51);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.cta-box {
  background: var(--color-primary);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-box .section-label {
  margin-bottom: 24px;
  color: var(--color-white);
}

.cta-box .h2,
.cta-box .body-text {
  color: var(--color-white);
}

.cta-box .section-label::before,
.cta-box .section-label::after {
  background: rgba(229, 229, 229, 0.4);
}

.cta-box .cta-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
}

.pattern-divider {
  width: 100%;
  height: 54px;
  overflow: hidden;
  line-height: 0;
}

.pattern-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-block-lg {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.two-col {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.two-col > * {
  flex: 1;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.img-rounded {
  border-radius: 24px;
  overflow: hidden;
}

.bg-teal .section-label::before,
.bg-teal .section-label::after {
  background: rgba(255, 255, 255, 0.3);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow:
    0 0.8px 2.4px -0.6px rgba(0,0,0,0.05),
    0 2.4px 7.2px -1.25px rgba(0,0,0,0.05),
    0 6.4px 19px -1.9px rgba(0,0,0,0.05),
    0 20px 60px -2.5px rgba(0,0,0,0.05);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-card-role {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
}

.team-card-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: -0.5px;
  color: var(--color-black);
}

.team-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: rgb(102, 102, 102);
}

.team-card-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.team-card-contact a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.team-card-contact a:hover {
  text-decoration: underline;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6em;
  color: var(--color-gray);
}

.faq-item.open .faq-answer {
  display: block;
}

.donation-box {
  background: var(--color-primary);
  border-radius: 24px;
  padding: 48px;
  color: var(--color-white);
}

.donation-box dt {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.donation-box dd {
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0 0 16px;
}

.donation-box dd:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(136, 136, 136, 0.1);
  border-radius: 10px;
  background: rgba(187, 187, 187, 0.15);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 500px;
  justify-content: flex-end;
  padding-top: 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1023px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero .section-label::before,
.hero .section-label::after {
  background: rgba(255, 255, 255, 0.3);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.page-hero {
  background: var(--color-white);
  padding: 200px 0 67px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .h2 {
  font-size: 60px;
}

.page-hero .hero-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 345px;
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 48px 0 16px;
  color: var(--color-text);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--color-text);
}

.legal-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6em;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.legal-content ul {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6em;
  color: var(--color-gray);
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--color-primary);
}

@media (max-width: 1199px) {
  .two-col {
    gap: 48px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .donation-box {
    padding: 36px;
  }

  .page-hero {
    padding: 200px 0 48px;
  }

  .page-hero .h2 {
    font-size: 48px;
  }
}

@media (max-width: 809px) {
  .two-col {
    flex-direction: column;
    gap: 32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 64px 32px;
    border-radius: 0;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero {
    min-height: 400px;
  }

  .donation-box {
    padding: 28px 20px;
  }

  .page-hero {
    padding: 200px 0 32px;
  }

  .page-hero .h2 {
    font-size: 40px;
  }
}
