/* styles.css */

/* ===== Base Styles ===== */
:root {
  --primary-color: #3D5AFE;
  --primary-light: #8187FF;
  --primary-dark: #0031CA;
  --secondary-color: #FF5722;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --black: #000000;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --font-main: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  --font-heading: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --border-radius: 4px;
  --transition-speed: 0.3s;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

button, .btn {
  cursor: pointer;
  font-family: var(--font-main);
  border: none;
  background: none;
  transition: all var(--transition-speed);
}

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

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

/* ===== Header & Navigation ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
  transition: all var(--transition-speed);
}

.main-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
}

.nav-list li {
  margin-left: 25px;
}

.nav-list a {
  color: var(--dark-gray);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-list a:hover {
  color: var(--primary-color);
}

.nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width var(--transition-speed);
}

.nav-list a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark-gray);
  border-radius: 3px;
  transition: all var(--transition-speed);
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 180px 0 100px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--medium-gray);
}

.hero-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== About Section ===== */
.about-section {
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* ===== Services Section ===== */
.services-section {
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(61, 90, 254, 0.1);
  border-radius: 50%;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

/* ===== Equipment Section ===== */
.equipment-section {
  background-color: var(--white);
}

.equipment-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.equipment-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.equipment-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.stat-number span {
  font-size: 1rem;
  margin-left: 5px;
}

.stat-label {
  font-size: 1rem;
  color: var(--medium-gray);
}

.equipment-details {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.detail-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 15px;
}

.tab-btn {
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  font-weight: 500;
  background-color: transparent;
  color: var(--medium-gray);
  transition: all var(--transition-speed);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.equipment-list {
  margin-top: 15px;
  padding-left: 20px;
}

.equipment-list li {
  list-style-type: disc;
  margin-bottom: 10px;
}

/* ===== Membership Section ===== */
.membership-section {
  background-color: var(--light-gray);
}

.membership-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.membership-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
  position: relative;
}

.membership-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.membership-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-color);
  z-index: 2;
}

.membership-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  font-size: 0.8rem;
  border-bottom-left-radius: 10px;
  font-weight: 500;
}

.membership-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
}

.membership-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

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

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--medium-gray);
  margin-left: 5px;
}

.membership-features {
  padding: 30px;
}

.membership-features ul {
  margin-bottom: 30px;
}

.membership-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.membership-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233D5AFE"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.membership-btn {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin: 0 30px 30px;
  font-weight: 500;
  transition: all var(--transition-speed);
}

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

/* ===== Stories Section ===== */
.stories-section {
  background-color: var(--white);
}

.stories-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.story-card {
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.story-image {
  flex: 1;
  max-width: 40%;
  overflow: hidden;
}

.story-image img {
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-content {
  flex: 1.5;
  padding: 30px;
}

.story-quote {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.story-result {
  font-weight: 700;
  color: var(--primary-color);
}

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

.prev-btn, .next-btn {
  background-color: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
}

.prev-btn:hover svg path, .next-btn:hover svg path {
  stroke: var(--white);
}

.slider-dots {
  display: flex;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

/* ===== Schedule Section ===== */
.schedule-section {
  background-color: var(--light-gray);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.day-tab {
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  font-weight: 500;
  background-color: var(--white);
  color: var(--medium-gray);
  transition: all var(--transition-speed);
  box-shadow: var(--shadow-sm);
}

.day-tab.active, .day-tab:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.schedule-content {
  display: none;
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.schedule-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

.class-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-speed);
}

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

.class-item:hover {
  background-color: rgba(61, 90, 254, 0.05);
}

.class-time {
  flex: 1;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.class-info {
  flex: 2;
}

.class-info h3 {
  margin-bottom: 5px;
}

.class-level {
  flex: 1;
  text-align: right;
  background-color: var(--light-gray);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--medium-gray);
  display: inline-block;
}

/* ===== Contact Section ===== */
.contact-section {
  background-color: var(--white);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-card {
  background-color: var(--light-gray);
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  margin: 0 auto 15px;
  width: 60px;
  height: 60px;
  background-color: rgba(61, 90, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(61, 90, 254, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--light-gray);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  text-transform: uppercase;
  letter-spacing: 1px;
  grid-column: 2;
  justify-self: end;
}

.submit-btn:hover {
  background-color: var(--primary-dark);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Footer ===== */
.main-footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo-img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-gray);
  transition: all var(--transition-speed);
}

.footer-links ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.8;
}

.footer-contact address a {
  color: var(--light-gray);
  transition: all var(--transition-speed);
}

.footer-contact address a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== Success Page ===== */
.success-page {
  background-color: var(--light-gray);
}

.success-section {
  padding: 150px 0 80px;
}

.success-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  padding: 50px 30px;
  box-shadow: var(--shadow-md);
}

.success-icon {
  margin: 0 auto 30px;
  width: 100px;
  height: 100px;
  background-color: rgba(61, 90, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-details {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 10px;
  display: inline-block;
}

.success-next {
  margin-top: 40px;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.next-step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background-color: var(--light-gray);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
}

.next-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
  background-color: rgba(61, 90, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.return-home-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
}

.return-home-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== Policy Pages ===== */
.policy-section {
  padding: 150px 0 80px;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.last-updated {
  color: var(--medium-gray);
  font-style: italic;
}

.policy-content {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.policy-nav {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.policy-nav h2 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.policy-nav ul li {
  margin-bottom: 10px;
}

.policy-nav ul li a {
  color: var(--medium-gray);
  transition: color var(--transition-speed);
}

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

.policy-sections {
  flex: 3;
}

.policy-block {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.policy-block h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.policy-block h3 {
  margin: 25px 0 15px;
  font-size: 1.3rem;
  color: var(--dark-gray);
}

.policy-block ul, .policy-block ol {
  margin: 20px 0;
  padding-left: 20px;
}

.policy-block ul li, .policy-block ol li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.policy-block ol li {
  list-style-type: decimal;
}

.contact-details {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.cookie-table-container {
  overflow-x: auto;
  margin: 20px 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.cookie-table th, .cookie-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cookie-table th {
  background-color: var(--light-gray);
  font-weight: 700;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 150px 0 80px;
  }
  
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .policy-content {
    flex-direction: column;
  }
  
  .policy-nav {
    position: static;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-list {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition-speed);
    z-index: 999;
  }
  
  .nav-list.active {
    transform: translateY(0);
  }
  
  .nav-list li {
    margin: 15px 0;
  }
  
  .story-card {
    flex-direction: column;
  }
  
  .story-image {
    max-width: 100%;
  }
  
  .membership-card.featured {
    transform: scale(1);
  }
  
  .membership-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .equipment-stats {
    flex-direction: column;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .submit-btn {
    grid-column: 1;
    justify-self: stretch;
  }
  
  .next-steps {
    flex-direction: column;
    align-items: center;
  }
}
