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

:root {
  --primary-color: #d33a2c;
  --secondary-color: #2d3748;
  --accent-color: #4a90e2;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
}

body {
  font-family:
    "Nunito",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

header {
  background: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
}

.logo h1 {
  font-size: 16px;
  color: black;
}

.logo-gymrats {
  font-weight: 900;
}

.logo-partners {
  font-weight: 400;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.nav-cta-button {
  background: var(--primary-color) !important;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.nav-cta-button:hover {
  background: #b82e23 !important;
  color: white !important;
  transform: translateY(-1px);
}

main {
  margin-top: 0;
}

.hero {
  background: #f8f9fa;
  color: black;
  text-align: center;
  padding: 8rem 4rem 6rem;
  margin: 0;
  border-radius: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  min-height: 600px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: rgba(211, 58, 44, 0.03);
  transform: rotate(15deg);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: rgba(211, 58, 44, 0.02);
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.social-feed {
  flex: 0 0 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: black;
  border-radius: 45px;
  padding: 8px;
  position: relative;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: rotate(-2deg) translateY(-5px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame:hover {
  transform: rotate(0deg) translateY(-15px);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Side buttons */
.phone-frame .side-button {
  position: absolute;
  background: linear-gradient(90deg, #2c2c2e, #1c1c1e);
  border-radius: 2px;
}

.phone-frame .volume-up {
  left: -3px;
  top: 120px;
  width: 3px;
  height: 30px;
}

.phone-frame .volume-down {
  left: -3px;
  top: 160px;
  width: 3px;
  height: 30px;
}

.phone-frame .power-button {
  right: -3px;
  top: 140px;
  width: 3px;
  height: 50px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.social-post {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: smoothFade 21s infinite;
  transition: opacity 0.5s ease-in-out;
}

.social-post:nth-child(1) {
  animation-delay: 0s;
}
.social-post:nth-child(2) {
  animation-delay: 6s;
}
.social-post:nth-child(3) {
  animation-delay: 12s;
}
.social-post:nth-child(4) {
  animation-delay: 18s;
}
.social-post:nth-child(5) {
  animation-delay: 24s;
}
.social-post:nth-child(6) {
  animation-delay: 30s;
}
.social-post:nth-child(7) {
  animation-delay: 36s;
}

.social-post img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

@keyframes smoothFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero h2 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: black;
}

.hottest {
  background: #d33a2c;
  color: white;
  padding: 0.1em 0.3em;
  border-radius: 8px;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat {
  background: white;
  color: var(--text-dark);
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  line-height: 1;
}

.stat p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.2;
}

.cta-button {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.features,
.how-it-works,
.contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  background: transparent;
  box-shadow: none;
}

.features h2,
.how-it-works h2,
.contact h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

.walkthrough-header {
  text-align: center;
  margin-bottom: 4rem;
}

.walkthrough-label {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.challenge-wizard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wizard-steps {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 2rem;
}

.wizard-step {
  background: #fefefe;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard-step:hover {
  background: #f1f3f4;
  border-color: #dee2e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.wizard-step.active {
  background: white;
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(211, 58, 44, 0.15);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.wizard-step .step-number {
  background: var(--border-color);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wizard-step.active .step-number {
  background: var(--primary-color);
  color: white;
}

.wizard-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.wizard-step p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.wizard-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--text-dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.wizard-cta:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.wizard-cta svg {
  width: 16px;
  height: 16px;
}

.wizard-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wizard-phone {
  max-width: 463px;
  width: 100%;
}

.wizard-phone .phone-frame {
  background: #1a1a1a;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: none !important;
  width: 322px;
  height: 667px;
}

.wizard-phone .phone-screen {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
}

.wizard-phone .phone-frame::after {
  display: none;
}

.wizard-phone .side-button {
  position: absolute;
  background: #333;
  border-radius: 2px;
}

.wizard-phone .volume-up {
  left: -3px;
  top: 120px;
  width: 3px;
  height: 25px;
}

.wizard-phone .volume-down {
  left: -3px;
  top: 150px;
  width: 3px;
  height: 25px;
}

.wizard-phone .power-button {
  right: -3px;
  top: 130px;
  width: 3px;
  height: 35px;
}

.step-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.step-images.active {
  opacity: 1;
}

.step-images[data-step="1"].active {
  opacity: 1;
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.step-image:first-child {
  position: relative;
}

.step-image.active {
  opacity: 1;
}

.step-images[data-step="1"] .step-image {
  animation: wizardSmoothFade 18s infinite;
}

.step-images[data-step="1"] .step-image:nth-child(1) {
  animation-delay: 0s;
}

.step-images[data-step="1"] .step-image:nth-child(2) {
  animation-delay: 6s;
}

.step-images[data-step="1"] .step-image:nth-child(3) {
  animation-delay: 12s;
}

@keyframes wizardSmoothFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  27.78% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.partners {
  background: var(--bg-light);
}

.partners-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-placeholder {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact {
  background: var(--bg-light);
}

.contact p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row:last-of-type {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family:
    "Nunito",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  transition: border-color 0.3s ease;
}

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

.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background: #b82e23;
}

.community {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  background: var(--bg-light);
  border-radius: 24px;
  margin-bottom: 4rem;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.community-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.community-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #b82e23;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.community-image {
  text-align: center;
}

.community-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

footer {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.footer-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 2rem;
}

.footer-logo {
  margin-right: 0.5rem;
  vertical-align: middle;
}

.social-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.contact-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.contact-item {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.contact-item:hover {
  color: var(--primary-color);
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--text-dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 0.9rem;
  font-weight: 500;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  header {
    padding: 1rem 0;
    position: static;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  nav ul {
    display: flex;
    margin: 0;
  }

  nav ul li {
    margin: 0;
    display: none;
  }

  nav ul li:last-child {
    display: block;
  }

  main {
    margin-top: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
    padding: 3rem 2rem 4rem;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .social-feed {
    order: 1;
    height: 280px;
    flex: none;
    margin-bottom: 2rem;
  }

  .social-feed .phone-frame {
    width: 220px;
    height: 440px;
    transform: none;
  }

  .social-feed .phone-frame:hover {
    transform: none;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features,
  .how-it-works,
  .contact {
    padding: 3rem 1rem;
    overflow-x: hidden;
  }

  .challenge-wizard {
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow-x: hidden;
  }

  .wizard-steps {
    order: 2;
    padding: 1.5rem;
  }

  .wizard-content {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .wizard-phone {
    max-width: 200px;
    width: 100%;
  }

  .wizard-phone .phone-frame {
    width: 200px;
    height: 420px;
    margin: 0 auto;
  }

  .wizard-step {
    padding: 1rem;
  }

  .wizard-step h3 {
    font-size: 1rem;
  }

  .wizard-step p {
    font-size: 0.85rem;
  }

  .community {
    padding: 3rem 1rem;
    margin-bottom: 2rem;
  }

  .community-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .community-text h2 {
    font-size: 2rem;
  }

  .community-actions {
    justify-content: center;
  }

  footer {
    padding: 3rem 0 2rem;
    margin-top: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--bg-white);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq .section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.faq-list {
  text-align: left;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question span {
  flex: 1;
  margin-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  margin-top: 1rem;
}

/* Mobile FAQ styles */
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }

  .faq-content {
    padding: 0 1rem;
  }

  .faq h2 {
    font-size: 2rem;
  }

  .faq .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
}
