/* Font Face Imports */
@font-face {
  font-family: "Acumin Variable";
  src: url("../assets/fonts/Acumin-Variable-Concept.ttf/Acumin Variable Concept.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables for Color Palette */
:root {
  --background-color: #f2eee7;
  --display-color: #335c44;
  --main-text-color: #414042;
  --white: #ffffff;
  --black: #000000;
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --header-bg: rgba(26, 26, 26, 0.9);
  --accent-blue: #4a90e2;
}

/* Typography */
body {
  margin: 0;
  padding: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--main-text-color);
  width: 100vw;
  overflow-x: hidden;
}

.display-font {
  font-family: "DM Serif Display", serif;
}

/* Header Styles */
.header {
  background-color: var(--header-bg);
  padding: 25px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-logo img {
  height: 45px;
  width: auto;
}

.apply-btn {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 25px;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.apply-btn:hover {
  background-color: var(--white);
  color: var(--display-color);
}

.secondary-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 20px;
}

.secondary-nav-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
}

.menu-icon {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 3px;
  cursor: pointer;
}

.menu-dot {
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--white);
  font-family: "Acumin Variable", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link.active {
  border-bottom: 2px solid var(--white);
  padding-bottom: 2px;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--white);
  max-width: 1000px;
  padding: 0 40px;
}

.hero-title {
  font-size: 80px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 40px 0;
  font-family: "DM Serif Display", serif;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
  font-family: "Acumin Variable", Arial, sans-serif;
}

.floating-buttons {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.floating-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.floating-btn:hover {
  background: var(--display-color);
  transform: scale(1.1);
}

/* Booking Calendar Section Styles */
.booking-section {
  background-color: #2c2c2c;
  padding: 120px 0;
  color: var(--white);
}

.booking-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.booking-content {
  max-width: 500px;
}

.booking-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0.8;
  font-family: "Acumin Variable", Arial, sans-serif;
}

.booking-title {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 30px 0;
  color: var(--white);
}

.booking-description {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  opacity: 0.9;
  font-family: "Acumin Variable", Arial, sans-serif;
}

.about-btn {
  background-color: var(--display-color);
  border: none;
  color: var(--white);
  padding: 16px 32px;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: var(--main-text-color);
  transform: translateY(-2px);
}

/* Calendar Styles */
.calendar-wrapper {
  display: flex;
  justify-content: flex-end;
}

.calendar {
  background-color: #3a3a3a;
  border-radius: 0;
  padding: 30px;
  max-width: 450px;
  width: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.calendar-month {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  font-family: "DM Serif Display", serif;
}

.calendar-nav {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
  border-radius: 0;
}

.calendar-nav:hover {
  background-color: #4a4a4a;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.day-header {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 30px;
}

.calendar-day {
  text-align: center;
  padding: 12px 8px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
}

.calendar-day:hover:not(.inactive) {
  background-color: #4a4a4a;
}

.calendar-day.inactive {
  color: #666;
  cursor: default;
}

.calendar-day.inactive:hover {
  background-color: transparent;
}

.calendar-day.today {
  background-color: var(--display-color);
  color: var(--white);
  font-weight: 500;
}

.calendar-day.selected {
  background-color: var(--white);
  color: #2c2c2c;
  font-weight: 500;
}

.calendar-day.selected.today {
  background-color: var(--white);
  color: #2c2c2c;
  font-weight: 500;
}

/* Time Slots */
.time-slots {
  border-top: 1px solid #4a4a4a;
  padding-top: 25px;
}

.time-slot-header {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  font-family: "DM Serif Display", serif;
}

.time-slot {
  background-color: var(--display-color);
  border: 2px solid var(--main-text-color);
  border-radius: 0;
  padding: 15px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background-color: var(--main-text-color);
  border-color: var(--display-color);
  transform: translateX(5px);
}

.time-slot:active {
  transform: translateX(5px) scale(0.98);
}

.time-icon {
  font-size: 18px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-icon svg {
  width: 20px;
  height: 20px;
}

/* Booking Confirmation Animation */
.booking-confirmation {
  animation: fadeInOut 3s ease-in-out;
  border-radius: 0;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* Founder Journey Section Styles */
.founder-journey-section {
  background-color: var(--background-color);
  padding: 140px 0;
  position: relative;
}

.founder-journey-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
  overflow: hidden;
}

.founder-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.1);
  transition: all 0.3s ease;
}

.founder-image:hover {
  filter: grayscale(0%) contrast(1.2);
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(51, 92, 68, 0.1) 0%,
    rgba(65, 64, 66, 0.05) 100%
  );
  pointer-events: none;
}

.founder-content {
  padding-left: 20px;
}

.founder-text {
  max-width: 600px;
}

.founder-paragraph {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--main-text-color);
  font-family: "Acumin Variable", "Arial", sans-serif;
  font-weight: 400;
}

.founder-paragraph:first-child {
  margin-top: 0;
}

.founder-paragraph:last-child {
  margin-bottom: 0;
}

.highlight-text {
  color: var(--display-color);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  display: block;
  margin-bottom: 20px;
  font-family: "DM Serif Display", serif;
  text-transform: none;
  position: relative;
  letter-spacing: -0.5px;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 60px;
  height: 3px;
  background: var(--display-color);
  opacity: 0.6;
}

.emphasis {
  font-weight: 500;
  color: var(--display-color);
}

.pillars-text {
  font-style: italic;
  font-weight: 600;
  color: var(--display-color);
  position: relative;
}

.pillars-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--display-color);
  opacity: 0.3;
}

.final-statement {
  font-size: 24px;
  color: var(--display-color);
  margin-top: 40px;
  padding: 25px 0;
  border-top: 2px solid rgba(51, 92, 68, 0.2);
  position: relative;
}

.final-statement strong {
  font-weight: 700;
  font-family: "DM Serif Display", serif;
  font-style: italic;
}

.final-statement::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 60px;
  color: var(--display-color);
  opacity: 0.3;
  font-family: "DM Serif Display", serif;
}

/* Weekly Rhythm Section Styles */
.weekly-rhythm-section {
  background-color: var(--background-color);
  padding: 120px 0;
  color: var(--main-text-color);
}

.weekly-rhythm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.rhythm-header {
  text-align: center;
  margin-bottom: 60px;
}

.rhythm-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: var(--display-color);
}

.rhythm-main-content {
  max-width: 900px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.rhythm-paragraph {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: var(--main-text-color);
}

.rhythm-paragraph.opening {
  font-size: 26px;
  font-weight: 600;
  color: var(--display-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.rhythm-paragraph.momentum {
  font-weight: 600;
  color: var(--display-color);
  font-size: 24px;
  margin-top: 30px;
}

/* Large Featured Image */
.rhythm-featured-image {
  position: relative;
  margin: 80px 0;
  text-align: center;
}

.rhythm-image-large {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: contrast(1.05) brightness(0.98);
  box-shadow: 0 30px 60px rgba(51, 92, 68, 0.2);
  transition: all 0.3s ease;
}

.rhythm-image-large:hover {
  filter: contrast(1.1) brightness(1.02);
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(51, 92, 68, 0.25);
}

.image-overlay-text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(51, 92, 68, 0.95);
  color: var(--white);
  padding: 25px 40px;
  text-align: center;
  min-width: 350px;
}

.overlay-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "DM Serif Display", serif;
  color: var(--white);
}

.overlay-description {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
  font-style: italic;
}

/* Bottom Content Grid */
.rhythm-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 80px 0;
  align-items: start;
}

.needs-column,
.urgency-column {
  max-width: 500px;
}

.needs-column {
  justify-self: end;
}

.urgency-column {
  justify-self: start;
}

/* Final Conclusion */
.rhythm-conclusion {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(51, 92, 68, 0.2);
}

/* Needs Section */
.needs-section {
  background: rgba(51, 92, 68, 0.08);
  padding: 30px;
  border-left: 4px solid var(--display-color);
  margin-bottom: 25px;
}

.needs-intro {
  font-size: 20px;
  font-weight: 600;
  color: var(--display-color);
  margin-bottom: 20px;
  font-family: "DM Serif Display", serif;
}

.needs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.need-item {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--main-text-color);
  position: relative;
  padding-left: 20px;
  font-weight: 500;
}

.need-item::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--display-color);
  font-weight: bold;
  font-size: 16px;
}

.need-item:last-child {
  margin-bottom: 0;
}

/* Bottom Content */
.rhythm-bottom {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.urgency-block {
  background: rgba(51, 92, 68, 0.06);
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(51, 92, 68, 0.15);
  position: relative;
}

.urgency-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--display-color);
}

.urgency-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--main-text-color);
  font-weight: 500;
}

.urgency-text:last-child {
  margin-bottom: 0;
}

.urgency-text strong {
  font-weight: 700;
  font-style: italic;
  color: var(--display-color);
}

.rhythm-paragraph.final-welcome {
  font-size: 22px;
  font-weight: 500;
  color: var(--display-color);
  line-height: 1.6;
  font-family: "DM Serif Display", serif;
  font-style: italic;
}

/* Who It's For Section Styles */
.who-its-for-section {
  background-color: #2c2c2c;
  padding: 120px 0;
  color: var(--white);
}

.who-its-for-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
}

/* Opening Statement */
.opening-statement {
  text-align: center;
  margin-bottom: 80px;
}

.main-intro {
  font-size: 26px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

/* Founder Journeys */
.founder-journeys {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.journey-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.journey-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.journey-number {
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  font-family: "DM Serif Display", serif;
  line-height: 1;
  margin-bottom: 25px;
  display: block;
  position: relative;
}

.journey-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.journey-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
  font-weight: 500;
}

/* Diversity Statement */
.diversity-statement {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--white);
}

.diversity-heading {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--white);
  font-style: italic;
}

.diversity-text {
  font-size: 22px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Advice Section */
.advice-section {
  margin-bottom: 80px;
}

.advice-heading {
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
}

.advice-content {
  max-width: 900px;
  margin: 0 auto;
}

.advice-description {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-align: center;
}

.advice-result {
  font-size: 22px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.board-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

.board-statement {
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

.board-statement strong {
  font-weight: 700;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: var(--white);
}

/* Industries Section */
.industries-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.industries-intro {
  font-size: 24px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.industry {
  color: var(--white);
  font-weight: 600;
  font-style: italic;
  position: relative;
}

/* Final Message */
.final-message {
  text-align: center;
  padding: 50px 0;
}

.determination {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  position: relative;
}

.determination::before,
.determination::after {
  content: '"';
  font-size: 40px;
  opacity: 0.4;
  position: absolute;
}

.determination::before {
  left: -30px;
  top: -5px;
}

.determination::after {
  right: -30px;
  bottom: -5px;
}

/* Member Benefits Section */
.member-benefits-section {
  background-color: var(--background-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.member-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.benefits-header {
  text-align: center;
  margin-bottom: 80px;
}

.benefits-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: var(--display-color);
  font-family: "DM Serif Display", serif;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.benefit-card {
  background: rgba(51, 92, 68, 0.04);
  border: 1px solid rgba(51, 92, 68, 0.1);
  border-radius: 0px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(51, 92, 68, 0.2);
  background: rgba(51, 92, 68, 0.06);
  box-shadow: 0 20px 40px rgba(51, 92, 68, 0.2);
}

/* Featured Benefit (The Huddle) */
.featured-benefit {
  grid-column: 1 / -1;
  background: rgba(51, 92, 68, 0.08);
  border-color: rgba(51, 92, 68, 0.2);
  text-align: center;
  padding: 50px 40px;
}

.featured-benefit:hover {
  background: rgba(51, 92, 68, 0.12);
  border-color: rgba(51, 92, 68, 0.3);
}

/* Benefit Icons */
.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  color: var(--display-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.benefit-card:not(.featured-benefit) .benefit-icon {
  margin: 0 0 30px 0;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card:hover .benefit-icon {
  opacity: 1;
  transform: scale(1.1);
  color: var(--display-color);
}

/* Benefit Names */
.benefit-name {
  font-size: 28px;
  color: var(--display-color);
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  line-height: 1.2;
  font-family: "DM Serif Display", serif;
  font-weight: 300;
}

.featured-benefit .benefit-name {
  font-size: 36px;
  margin-bottom: 25px;
}

/* Benefit Descriptions */
.benefit-description {
  font-size: 18px;
  color: var(--main-text-color);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.featured-benefit .benefit-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits Summary */
.benefits-summary {
  text-align: center;
  padding: 40px;
  background: rgba(51, 92, 68, 0.04);
  border-radius: 0px;
  border: 1px solid rgba(51, 92, 68, 0.1);
}

/* Scientifically Backed Section */
.scientifically-backed-section {
  background: #2c2c2c;
  padding: 120px 0;
  color: var(--white);
}

.scientifically-backed-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Section Header */
.backed-header {
  text-align: left;
  margin-bottom: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.backed-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 30px 0;
  color: var(--white);
  font-family: "DM Serif Display", serif;
}

.backed-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

/* Research Cards Grid */
.research-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.research-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0px;
  padding: 40px 35px;
  transition: all 0.3s ease;
}

.research-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.research-content {
  max-width: 100%;
}

.research-stat {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
  color: var(--white);
  font-family: "Acumin Variable", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.research-detail {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 15px 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

.research-detail strong {
  font-weight: 700;
  color: var(--white);
}

.research-source {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-weight: 500;
  font-family: "Acumin Variable", Arial, sans-serif;
  display: block;
  margin-top: 10px;
}

/* Criteria For Entry Section Styles */
.criteria-entry-section {
  background-color: var(--background-color);
  padding: 120px 0;
  color: var(--main-text-color);
  position: relative;
}

.criteria-entry-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.criteria-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.criteria-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 30px 0;
  color: var(--display-color);
  font-family: "DM Serif Display", serif;
  letter-spacing: 2px;
}

.criteria-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--main-text-color);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

/* Main Content Grid */
.criteria-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

/* Requirements Section */
.criteria-requirements {
  background: rgba(51, 92, 68, 0.03);
  border: 1px solid rgba(51, 92, 68, 0.1);
  padding: 50px 40px;
  position: relative;
}

.criteria-requirements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--display-color);
}

.requirements-header {
  margin-bottom: 40px;
  text-align: center;
}

.requirements-title {
  font-size: 32px;
  font-weight: 300;
  color: var(--display-color);
  margin: 0;
  font-family: "DM Serif Display", serif;
}

/* Criteria List */
.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(51, 92, 68, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.criteria-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(51, 92, 68, 0.2);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(51, 92, 68, 0.1);
}

.criteria-number {
  width: 50px;
  height: 50px;
  background: var(--display-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Serif Display", serif;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.criteria-item:hover .criteria-number {
  background: var(--main-text-color);
  transform: scale(1.1);
}

.criteria-content {
  flex: 1;
}

.criteria-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--display-color);
  margin: 0 0 10px 0;
  font-family: "DM Serif Display", serif;
}

.criteria-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--main-text-color);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
}

/* Process Section */
.criteria-process {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quality-assurance,
.matching-process {
  background: rgba(51, 92, 68, 0.05);
  border: 1px solid rgba(51, 92, 68, 0.15);
  padding: 40px 35px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.quality-assurance:hover,
.matching-process:hover {
  background: rgba(51, 92, 68, 0.08);
  border-color: rgba(51, 92, 68, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(51, 92, 68, 0.15);
}

.quality-icon,
.matching-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  color: var(--display-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.quality-assurance:hover .quality-icon,
.matching-process:hover .matching-icon {
  opacity: 1;
  transform: scale(1.1);
}

.quality-icon svg,
.matching-icon svg {
  width: 100%;
  height: 100%;
}

.quality-title,
.matching-title {
  font-size: 24px;
  font-weight: 300;
  color: var(--display-color);
  margin: 0 0 20px 0;
  font-family: "DM Serif Display", serif;
}

.quality-description,
.matching-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--main-text-color);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
}

/* Conclusion Section */
.criteria-conclusion {
  margin-bottom: 60px;
}

.conclusion-highlight {
  background: rgba(51, 92, 68, 0.08);
  border-left: 6px solid var(--display-color);
  padding: 50px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title {
  font-size: 32px;
  font-weight: 300;
  color: var(--display-color);
  margin: 0 0 20px 0;
  font-family: "DM Serif Display", serif;
}

/* CTA Section */
.criteria-cta {
  text-align: center;
}

.learn-more-btn {
  background-color: var(--display-color);
  border: 2px solid var(--display-color);
  color: var(--white);
  padding: 18px 40px;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.learn-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.learn-more-btn:hover::before {
  left: 100%;
}

.learn-more-btn:hover {
  background-color: transparent;
  color: var(--display-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(51, 92, 68, 0.3);
}

/* What We Look For Section Styles */
.what-we-look-for-section {
  background-color: #2c2c2c;
  padding: 120px 0;
  color: var(--white);
  position: relative;
}

.what-we-look-for-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.look-for-header {
  text-align: center;
  margin-bottom: 80px;
}

.look-for-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
  font-family: "DM Serif Display", serif;
}

/* Main Content */
.look-for-main-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

/* Opening Statement */
.opening-statement-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.opening-tagline {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin: 0 0 30px 0;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  position: relative;
}

.opening-tagline::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--white);
  opacity: 0.4;
}

.opening-description {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

/* Philosophy Content */
.philosophy-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-intro {
  margin-bottom: 50px;
}

.philosophy-text {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

/* Featured Quote */
.featured-quote {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 40px;
  margin: 50px 0;
  position: relative;
  transition: all 0.3s ease;
}

.featured-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  opacity: 0.6;
}

.featured-quote:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.quote-content {
  position: relative;
}

.quote-text {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.quote-text::before,
.quote-text::after {
  content: '"';
  font-size: 48px;
  opacity: 0.3;
  position: absolute;
  font-style: normal;
  color: var(--white);
  font-family: "DM Serif Display", serif;
}

.quote-text::before {
  left: -30px;
  top: -10px;
}

.quote-text::after {
  right: -30px;
  bottom: -15px;
}

.quote-reference {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-style: normal;
  font-family: "Acumin Variable", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.philosophy-conclusion {
  margin-top: 50px;
}

.conclusion-text-black {
  font-size: 20px;
  line-height: 1.5;
  color: var(--main-text-color);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 500;
}

.conclusion-text {
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 500;
}

/* Final Belief Statement */
.final-belief {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.final-belief::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--white);
  opacity: 0.4;
}

.belief-statement {
  font-size: 26px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 300;
  font-style: italic;
}

/* CTA Section */
.look-for-cta {
  text-align: center;
  padding: 60px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.apply-now-btn {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 18px 40px;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.apply-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.apply-now-btn:hover::before {
  left: 100%;
}

.apply-now-btn:hover {
  background-color: var(--white);
  color: #2c2c2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Coach Application Section Styles */
.coach-application-section {
  background-color: var(--background-color);
  padding: 120px 0;
  color: var(--main-text-color);
  position: relative;
  overflow: hidden;
}

.coach-application-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.coach-content-wrapper {
  text-align: center;
  position: relative;
  background: rgba(51, 92, 68, 0.03);
  border: 1px solid rgba(51, 92, 68, 0.1);
  padding: 80px 60px;
  position: relative;
  transition: all 0.3s ease;
}

.coach-content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.8;
}

/* Coach Icon */
.coach-icon-wrapper {
  margin-bottom: 40px;
}

.coach-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: var(--display-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.coach-content-wrapper:hover .coach-icon {
  opacity: 1;
  transform: scale(1.05);
}

.coach-icon svg {
  width: 100%;
  height: 100%;
}

/* Main Content */
.coach-main-content {
  max-width: 700px;
  margin: 0 auto;
}

.coach-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 40px 0;
  color: var(--display-color);
  font-family: "DM Serif Display", serif;
  position: relative;
}

.coach-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--display-color);
  opacity: 0.4;
}

/* Description */
.coach-description {
  margin-bottom: 50px;
}

.coach-paragraph {
  font-size: 20px;
  line-height: 1.7;
  color: var(--main-text-color);
  margin: 0 0 25px 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

.coach-call-to-action {
  font-size: 22px;
  line-height: 1.5;
  color: var(--display-color);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
}

/* CTA Button */
.coach-cta {
  margin-bottom: 40px;
}

.coach-apply-btn {
  background-color: var(--display-color);
  border: 2px solid var(--display-color);
  color: var(--white);
  padding: 20px 45px;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.coach-apply-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.coach-apply-btn:hover::before {
  left: 100%;
}

.coach-apply-btn:hover {
  background-color: transparent;
  color: var(--display-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(51, 92, 68, 0.3);
}

/* Decorative Element */
.coach-decorative-element {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.decorative-line {
  width: 60px;
  height: 1px;
  background: var(--display-color);
  opacity: 0.4;
}

.decorative-dot {
  width: 8px;
  height: 8px;
  background: var(--display-color);
  border-radius: 50%;
  opacity: 0.6;
}

/* Hover Effects */
.coach-content-wrapper {
  transition: all 0.3s ease;
}

.coach-content-wrapper:hover {
  background: rgba(51, 92, 68, 0.05);
  border-color: rgba(51, 92, 68, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(51, 92, 68, 0.15);
}

.coach-content-wrapper:hover .decorative-line {
  opacity: 0.6;
  width: 80px;
}

.coach-content-wrapper:hover .decorative-dot {
  opacity: 0.8;
  transform: scale(1.2);
}

/* CEO Message Section Styles */
.ceo-message-section {
  background-color: #2c2c2c;
  padding: 120px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ceo-message-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.ceo-content-wrapper {
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 60px;
  position: relative;
  transition: all 0.3s ease;
}

.ceo-content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.8;
}

/* Message Header */
.message-header {
  margin-bottom: 60px;
}

.message-title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
  color: var(--white);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  position: relative;
}

.message-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* Main Message Content */
.message-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.message-text-wrapper {
  position: relative;
  z-index: 2;
}

.message-paragraph {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
  position: relative;
}

.message-paragraph.opening {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
}

.message-paragraph.emphasis {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 40px;
  position: relative;
}

.message-paragraph.mission {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 50px;
  font-family: "DM Serif Display", serif;
  font-style: italic;
}

/* Closing Statement */
.closing-statement {
  margin-top: 50px;
  padding-top: 40px;
  position: relative;
}

.closing-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.message-paragraph.closing {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 25px;
}

.signature {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.salam {
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  position: relative;
}

.salam::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  opacity: 0.4;
}

/* Decorative Quote Element */
.message-quote-decoration {
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: 1;
  opacity: 0.08;
}

.quote-mark-large {
  font-size: 140px;
  font-family: "DM Serif Display", serif;
  color: var(--white);
  line-height: 1;
  font-weight: 300;
}

/* Message Footer */
.message-footer {
  margin-top: 60px;
  padding-top: 30px;
}

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

.ornament-center {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.ornament-center svg {
  width: 100%;
  height: 100%;
}

/* Hover Effects */
.ceo-content-wrapper:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ceo-content-wrapper:hover .ornament-center {
  color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.ceo-content-wrapper:hover .message-quote-decoration {
  opacity: 0.12;
}

/* FAQ Section Styles */
.faq-section {
  background-color: var(--background-color);
  padding: 140px 0 120px 0;
  color: var(--main-text-color);
  position: relative;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.faq-title {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 30px 0;
  color: var(--display-color);
  font-family: "DM Serif Display", serif;
  position: relative;
}

.faq-subtitle {
  font-size: 22px;
  line-height: 1.5;
  color: var(--main-text-color);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 40px;
}

/* FAQ Items Container */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(51, 92, 68, 0.08);
}

.faq-item {
  border-bottom: 2px solid rgba(51, 92, 68, 0.08);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.faq-item:first-child {
  border-top: none;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(51, 92, 68, 0.02);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 40px 50px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s ease;
  font-family: "Acumin Variable", Arial, sans-serif;
  gap: 30px;
}

.faq-question:hover {
  background: rgba(51, 92, 68, 0.03);
}

.faq-question:focus {
  outline: none;
  background: rgba(51, 92, 68, 0.05);
}

.question-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--display-color);
  font-family: "DM Serif Display", serif;
  text-align: left;
  flex: 1;
  margin: 0;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--display-color);
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
  font-family: "Acumin Variable", Arial, sans-serif;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--main-text-color);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background: rgba(51, 92, 68, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 50px 50px 50px 50px;
}

.faq-answer p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--main-text-color);
  margin: 0 0 25px 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.4s ease 0.1s;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

/* Active State */
.faq-item.active {
  background: rgba(51, 92, 68, 0.04);
  border-color: rgba(51, 92, 68, 0.15);
}

.faq-item.active .faq-question {
  background: rgba(51, 92, 68, 0.06);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(51, 92, 68, 0.1);
}

/* Enhanced Visual Effects */
.faq-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--display-color),
    transparent
  );
  opacity: 0.6;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 100px 0 80px 0;
  }

  .faq-container {
    padding: 0 30px;
  }

  .faq-header {
    margin-bottom: 70px;
  }

  .faq-title {
    font-size: 48px;
    margin-bottom: 25px;
  }

  .faq-title::after {
    width: 60px;
    height: 2px;
    bottom: -15px;
  }

  .faq-subtitle {
    font-size: 20px;
    margin-top: 30px;
  }

  .faq-question {
    padding: 30px 35px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .question-text {
    font-size: 22px;
    max-width: 100%;
  }

  .faq-icon {
    position: absolute;
    right: 35px;
    top: 30px;
    font-size: 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 35px 40px 35px;
  }

  .faq-answer p {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 80px 0 60px 0;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-header {
    margin-bottom: 50px;
  }

  .faq-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .faq-title::after {
    width: 50px;
    bottom: -12px;
  }

  .faq-subtitle {
    font-size: 18px;
    margin-top: 25px;
  }

  .faq-question {
    padding: 25px 25px;
    gap: 15px;
  }

  .question-text {
    font-size: 20px;
    line-height: 1.3;
  }

  .faq-icon {
    right: 25px;
    top: 25px;
    font-size: 22px;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 30px 25px;
  }

  .faq-answer p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.6;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  background-color: #2c2c2c;
  padding: 140px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-title {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 30px 0;
  color: var(--white);
  font-family: "DM Serif Display", serif;
  position: relative;
}

.testimonials-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 40px 0 0 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

/* Featured Testimonial */
.featured-testimonial {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.quote-decoration {
  font-size: 120px;
  font-family: "DM Serif Display", serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  font-weight: 300;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.featured-quote-text {
  font-size: 28px;
  line-height: 1.6;
  color: var(--white);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 60px 40px 40px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  margin-bottom: 80px;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 40px;
}

.testimonial-card {
  min-width: 380px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

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

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
  flex: 1;
}

.testimonial-author {
  text-align: center;
}

.author-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 8px 0;
  font-family: "DM Serif Display", serif;
}

.author-title {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-family: "Acumin Variable", Arial, sans-serif;
  font-weight: 400;
}

/* Carousel Navigation */
.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
  .testimonial-card {
    min-width: 340px;
    padding: 35px 30px;
  }

  .testimonials-track {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonials-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 30px 25px;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .author-name {
    font-size: 18px;
  }

  .author-title {
    font-size: 13px;
  }

  .testimonials-track {
    gap: 20px;
  }

  /* Make navigation more touch-friendly */
  .carousel-dots {
    gap: 10px;
    margin-top: 30px;
  }

  .carousel-dot {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 36px;
  }

  .testimonial-card {
    min-width: 260px;
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }

  .author-name {
    font-size: 16px;
  }

  .author-title {
    font-size: 12px;
    line-height: 1.3;
  }

  /* Use full width on very small screens */
  .testimonials-track {
    gap: 15px;
  }
}

/* Existing responsive code continues... */

/* ============= RESPONSIVE STYLES ============= */

/* Large Desktops (1400px and up) */
@media (min-width: 1400px) {
  /* Content already optimized for large screens in base styles */
}

/* Desktops and Laptops (1024px to 1399px) */
@media (max-width: 1399px) {
  /* Hero Section */
  .hero-title {
    font-size: 70px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  /* Section Titles */
  .rhythm-title,
  .section-title,
  .benefits-title,
  .backed-title,
  .criteria-title,
  .look-for-title {
    font-size: 48px;
  }

  /* Containers */
  .booking-container,
  .founder-journey-container,
  .scientifically-backed-container,
  .criteria-main-grid {
    gap: 60px;
  }

  /* Booking Calendar */
  .calendar {
    max-width: 400px;
  }

  /* Member Benefits */
  .benefit-name {
    font-size: 24px;
  }

  .featured-benefit .benefit-name {
    font-size: 32px;
  }

  /* Testimonials */
  .testimonials-title {
    font-size: 56px;
  }

  .featured-quote-text {
    font-size: 26px;
  }
}

/* Tablets and Small Laptops (768px to 1023px) */
@media (max-width: 1023px) {
  /* Global Adjustments */
  section {
    padding: 80px 0 !important;
  }

  .header-container,
  .secondary-nav-container {
    padding: 0 25px;
  }

  /* Typography */
  .hero-title {
    font-size: 58px;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  /* Section Titles */
  .rhythm-title,
  .section-title,
  .benefits-title,
  .backed-title,
  .criteria-title,
  .look-for-title,
  .faq-title,
  .testimonials-title {
    font-size: 42px;
  }

  /* Layout Adjustments */
  .founder-journey-container,
  .booking-container,
  .scientifically-backed-container,
  .criteria-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Founder Journey Section */
  .founder-content {
    padding-left: 0;
  }

  /* Weekly Rhythm Section */
  .rhythm-paragraph {
    font-size: 20px;
  }

  .rhythm-paragraph.opening {
    font-size: 22px;
  }

  .rhythm-bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .needs-column,
  .urgency-column {
    justify-self: center;
  }

  /* Who It's For Section */
  .founder-journeys {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Member Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Research Cards */
  .research-card {
    padding: 30px 25px;
  }

  /* Navigation */
  .navigation {
    gap: 25px;
  }

  .nav-link {
    font-size: 12px;
  }

  /* Testimonials */
  .featured-testimonial {
    margin-bottom: 60px;
  }

  .featured-quote-text {
    font-size: 22px;
    padding: 50px 30px 30px 30px;
  }

  /* Coach Section */
  .coach-content-wrapper,
  .ceo-content-wrapper {
    padding: 60px 40px;
  }

  .coach-title,
  .message-title {
    font-size: 38px;
  }
}

/* Mobile Devices (480px to 767px) */
@media (max-width: 767px) {
  /* Global Adjustments */
  section {
    padding: 60px 0 !important;
  }

  .header {
    padding: 15px 0;
  }

  .header-container,
  .secondary-nav-container,
  .footer-container,
  .testimonials-container,
  .weekly-rhythm-container,
  .who-its-for-container,
  .member-benefits-container,
  .criteria-entry-container,
  .what-we-look-for-container,
  .coach-application-container,
  .ceo-message-container,
  .faq-container {
    padding: 0 20px;
  }

  /* Typography */
  .hero-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Section Titles */
  .rhythm-title,
  .section-title,
  .benefits-title,
  .backed-title,
  .criteria-title,
  .look-for-title,
  .faq-title,
  .testimonials-title {
    font-size: 36px;
  }

  /* Header & Navigation */
  .header-logo img {
    height: 38px;
  }

  .apply-btn {
    padding: 10px 15px;
    font-size: 11px;
  }

  .navigation {
    display: none; /* Hide standard navigation on mobile */
  }

  /* Add mobile menu toggle button - will need JS to make it functional */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
  }

  /* Founder Journey Section */
  .highlight-text {
    font-size: 24px;
  }

  .founder-paragraph {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Weekly Rhythm Section */
  .rhythm-paragraph {
    font-size: 18px;
  }

  .rhythm-paragraph.opening {
    font-size: 20px;
  }

  .rhythm-paragraph.momentum {
    font-size: 20px;
  }

  .image-overlay-text {
    position: static;
    transform: none;
    min-width: unset;
    width: 100%;
    margin-top: 20px;
    background: rgba(51, 92, 68, 0.95);
    left: auto;
    bottom: auto;
  }

  .overlay-title {
    font-size: 20px;
  }

  /* Who It's For Section */
  .main-intro {
    font-size: 20px;
  }

  .diversity-heading {
    font-size: 32px;
  }

  .diversity-text {
    font-size: 18px;
  }

  .advice-heading {
    font-size: 32px;
  }

  .advice-description {
    font-size: 18px;
  }

  .board-statement {
    font-size: 20px;
  }

  /* Membership Benefits */
  .benefit-card {
    padding: 30px 25px;
  }

  .benefit-name {
    font-size: 22px;
  }

  .featured-benefit .benefit-name {
    font-size: 28px;
  }

  .benefit-description {
    font-size: 16px;
  }

  /* Criteria For Entry */
  .criteria-description {
    font-size: 18px;
  }

  .criteria-item {
    padding: 20px 15px;
    gap: 15px;
  }

  .criteria-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .criteria-heading {
    font-size: 18px;
  }

  /* What We Look For */
  .opening-tagline {
    font-size: 34px;
  }

  .philosophy-text {
    font-size: 18px;
  }

  .quote-text {
    font-size: 26px;
  }

  /* Coach Application & CEO Message */
  .coach-content-wrapper,
  .ceo-content-wrapper {
    padding: 50px 25px;
  }

  .coach-title,
  .message-title {
    font-size: 32px;
  }

  .coach-paragraph,
  .message-paragraph {
    font-size: 18px;
  }

  /* FAQ Section */
  .faq-question {
    padding: 25px 20px;
  }

  .question-text {
    font-size: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 30px 20px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  /* Floating buttons */
  .floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    transform: none;
    flex-direction: row;
  }
}

/* Small Mobile Devices (less than 480px) */
@media (max-width: 479px) {
  /* Global Adjustments */
  section {
    padding: 50px 0 !important;
  }

  /* Typography */
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Section Titles */
  .rhythm-title,
  .section-title,
  .benefits-title,
  .backed-title,
  .criteria-title,
  .look-for-title,
  .faq-title,
  .testimonials-title {
    font-size: 32px;
  }

  /* Founder Journey */
  .highlight-text {
    font-size: 22px;
  }

  .founder-paragraph {
    font-size: 16px;
  }

  /* Weekly Rhythm */
  .rhythm-paragraph {
    font-size: 16px;
  }

  .rhythm-paragraph.opening {
    font-size: 18px;
  }

  .needs-section {
    padding: 20px;
  }

  .urgency-block {
    padding: 25px;
  }

  /* Who It's For */
  .journey-number {
    font-size: 60px;
  }

  .journey-text {
    font-size: 16px;
  }

  .diversity-statement {
    padding: 40px 25px;
  }

  .diversity-heading {
    font-size: 28px;
  }

  .diversity-text {
    font-size: 16px;
  }

  .board-highlight {
    padding: 30px 20px;
  }

  /* Membership Benefits */
  .benefit-card {
    padding: 25px 20px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .benefit-name {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .featured-benefit .benefit-name {
    font-size: 24px;
  }

  /* Research Section */
  .research-stat {
    font-size: 18px;
  }

  .research-detail {
    font-size: 15px;
  }

  /* Criteria Section */
  .requirements-title {
    font-size: 26px;
  }

  .quality-title,
  .matching-title {
    font-size: 22px;
  }

  .conclusion-title {
    font-size: 26px;
  }

  .learn-more-btn,
  .apply-now-btn,
  .coach-apply-btn {
    padding: 15px 25px;
    font-size: 13px;
  }

  /* What We Look For */
  .opening-tagline {
    font-size: 28px;
  }

  .quote-text {
    font-size: 22px;
  }

  .quote-text::before,
  .quote-text::after {
    font-size: 36px;
  }

  .belief-statement {
    font-size: 22px;
  }

  /* Coach Application & CEO Message */
  .coach-title,
  .message-title {
    font-size: 28px;
  }

  .coach-call-to-action {
    font-size: 18px;
  }

  .message-paragraph.mission {
    font-size: 22px;
  }

  .salam {
    font-size: 28px;
  }
}

/* Mobile Header & Navigation */
@media (max-width: 767px) {
  /* Mobile Header Adjustments */
  .secondary-nav {
    display: none; /* Hide secondary nav by default on mobile */
  }

  /* Add mobile menu container */
  .mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .mobile-menu-container.active {
    display: flex;
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
  }

  .mobile-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 20px;
  }

  .mobile-nav-link.active {
    border-bottom: 2px solid var(--white);
  }

  .mobile-apply-btn {
    margin-top: 40px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .mobile-apply-btn:hover {
    background-color: var(--white);
    color: var(--display-color);
  }
}

/* Booking Calendar Responsiveness */
@media (max-width: 767px) {
  .booking-container {
    display: flex;
    flex-direction: column;
  }

  .booking-content {
    margin-bottom: 40px;
    text-align: center;
    max-width: 100%;
  }

  .booking-title {
    font-size: 36px;
  }

  .calendar-wrapper {
    justify-content: center;
  }

  .calendar {
    max-width: 100%;
  }
}

/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Mobile Menu Container - Hidden by default */
.mobile-menu-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Mobile Header & Navigation */
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-container.active {
    display: flex;
  }

  .secondary-nav {
    display: none; /* Hide secondary nav by default on mobile */
  }

  .navigation {
    display: none; /* Hide standard navigation on mobile */
  }

  /* ...other existing mobile styles... */
}

/* Footer Styles */
.footer {
  background-color: var(--header-bg);
  padding: 30px 0;
  color: var(--white);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.copyright-text {
  font-size: 14px;
  opacity: 0.7;
  font-family: "Acumin Variable", Arial, sans-serif;
  margin: 0;
  letter-spacing: 0.5px;
}

.developer-credit {
  font-size: 12px;
  opacity: 0.6;
  font-family: "Acumin Variable", Arial, sans-serif;
  margin: 0;
  letter-spacing: 0.3px;
}

.developer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.developer-link:hover {
  color: var(--white);
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Footer Responsive */
@media (max-width: 767px) {
  .footer {
    padding: 25px 0;
  }

  .footer-content {
    gap: 12px;
  }

  .copyright-text {
    font-size: 13px;
  }

  .developer-credit {
    font-size: 11px;
  }
}

@media (max-width: 479px) {
  .footer {
    padding: 20px 0;
  }

  .footer-content {
    gap: 10px;
  }

  .copyright-text {
    font-size: 12px;
  }

  .developer-credit {
    font-size: 10px;
  }
}
