/* ====================================
   FROSTY ROADSTER - WARM & FRIENDLY FITNESS STUDIO
   Design Style: Warm, Approachable, Motivating
   ====================================*/

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background: #FFF8F0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #555555;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA726 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: #FF6B6B;
  border: 2px solid #FF6B6B;
}

.btn-secondary:hover {
  background: #FF6B6B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6B6B, #FFA726);
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #FF6B6B;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B6B, #FFA726);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B6B;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FF5252;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FF6B6B;
  padding-left: 10px;
}

/* Hero Sections */
.hero,
.error-hero,
.legal-hero,
.confirmation-hero {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.hero-content h1,
.error-content h1,
.confirmation-hero h1 {
  color: #2C3E50;
  margin-bottom: 24px;
  font-size: 48px;
}

.hero-content p,
.error-content p,
.confirmation-hero p {
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.benefit-card h3 {
  color: #FF6B6B;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: #666666;
  font-size: 14px;
}

/* Services Grid */
.services-grid,
.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.service-card h2,
.service-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.service-card p {
  color: #666666;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FF6B6B;
  display: block;
  margin: 16px 0;
}

.service-card ul {
  margin: 16px 0;
  padding-left: 0;
}

.service-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #666666;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #43A047;
  font-weight: bold;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: #FFD4B8;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card strong {
  color: #FF6B6B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: block;
  margin-top: 16px;
}

/* Stats Grid */
.stats {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA726 100%);
  border-radius: 30px;
  padding: 60px 20px;
  color: #FFFFFF;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  padding: 20px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.stat-card p {
  color: #FFFFFF;
  font-size: 18px;
  opacity: 0.95;
}

/* CTA Banner */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

.cta-banner h2,
.cta-section h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  color: #555555;
  margin-bottom: 32px;
}

/* Contact Grid */
.contact-grid,
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-item,
.contact-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  margin-bottom: 20px;
}

.contact-item h3 {
  color: #FF6B6B;
  margin-bottom: 16px;
}

.contact-item p {
  color: #666666;
  line-height: 1.8;
}

/* Pricing Tables */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card.highlighted {
  border: 3px solid #FF6B6B;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B6B, #FFA726);
  color: #FFFFFF;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.pricing-card h3 {
  color: #2C3E50;
  font-size: 28px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FF6B6B;
  margin: 16px 0;
  display: block;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: #666666;
  border-bottom: 1px solid #F0F0F0;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #43A047;
  font-weight: bold;
  font-size: 18px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  margin-top: auto;
}

.note {
  text-align: center;
  color: #888888;
  font-size: 14px;
  margin-top: 24px;
  font-style: italic;
}

/* Add-on Pricing */
.addon-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.addon-item {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 20px 24px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.addon-item:hover {
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.15);
  transform: translateX(5px);
}

.addon-item span:first-child {
  color: #2C3E50;
  font-weight: 600;
  flex: 1;
}

.addon-item .price {
  color: #FF6B6B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

/* Courses & Classes */
.categories-grid,
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card,
.course-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  margin-bottom: 20px;
  text-align: center;
}

.category-card:hover,
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.category-card h3,
.course-card h3 {
  color: #FF6B6B;
  margin-bottom: 12px;
}

.category-card p,
.course-card p {
  color: #666666;
  margin-bottom: 16px;
}

.course-card span {
  display: inline-block;
  background: #FFE8D6;
  color: #FF6B6B;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* Packages */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.package-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  margin-bottom: 20px;
}

.package-card.highlighted {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.package-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 24px;
}

.package-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FF6B6B;
  display: block;
  margin: 16px 0;
}

.package-card p {
  color: #43A047;
  font-weight: 600;
  margin-top: 8px;
}

/* Blog & Articles */
.featured-post {
  margin-bottom: 60px;
}

.featured-card {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured-card .category,
.article-card .category {
  display: inline-block;
  background: #FF6B6B;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.featured-card h2 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 32px;
}

.featured-card p {
  color: #555555;
  font-size: 18px;
  margin-bottom: 16px;
}

.featured-card .meta,
.article-card .meta {
  color: #888888;
  font-size: 14px;
  font-style: italic;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.article-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.article-card h3 {
  color: #2C3E50;
  margin: 16px 0;
}

.article-card p {
  color: #666666;
  margin-bottom: 16px;
}

/* Contact Page */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.method-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.method-card h3 {
  color: #FF6B6B;
  margin-bottom: 16px;
}

.method-card p {
  color: #2C3E50;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.method-card span {
  color: #888888;
  font-size: 14px;
}

.opening-hours {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.hours-item {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 20px 32px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
}

.hours-item strong {
  color: #FF6B6B;
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.direct-contact {
  font-size: 20px;
  font-weight: 600;
  color: #FF6B6B;
  font-family: 'Montserrat', sans-serif;
}

/* 404 Error Page */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #FF6B6B;
  line-height: 1;
  margin-bottom: 24px;
}

.quick-links {
  margin-bottom: 60px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.link-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 20px 32px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  color: #2C3E50;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.link-card:hover {
  background: linear-gradient(135deg, #FF6B6B, #FFA726);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.motivational-cta {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

/* Thank You / Confirmation Pages */
.success-icon {
  width: 80px;
  height: 80px;
  background: #43A047;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(67, 160, 71, 0.3);
}

.next-steps,
.navigation-options {
  margin-bottom: 60px;
}

.steps-grid,
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card,
.option-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover,
.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.step-card h3 {
  color: #FF6B6B;
  margin-bottom: 12px;
}

.step-card p {
  color: #666666;
}

.option-card {
  color: #2C3E50;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-card:hover {
  background: linear-gradient(135deg, #FF6B6B, #FFA726);
  color: #FFFFFF;
}

.contact-reminder {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

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

.contact-methods p {
  font-size: 16px;
  margin-bottom: 12px;
  color: #555555;
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: #FF6B6B;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #2C3E50;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  color: #555555;
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
  list-style: disc;
}

.legal-content a {
  color: #FF6B6B;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #FFA726;
}

/* GDPR Rights */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.right-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
}

.right-card h3 {
  color: #FF6B6B;
  margin-bottom: 12px;
  font-size: 18px;
}

.right-card p {
  color: #666666;
}

/* Story & Mission */
.story {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.story p {
  font-size: 18px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.mission-card,
.vision-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  text-align: center;
  margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
  color: #FF6B6B;
  margin-bottom: 16px;
}

.mission-card p,
.vision-card p {
  color: #666666;
  font-size: 16px;
}

/* Facilities */
.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.facility-item {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 20px 32px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  color: #2C3E50;
  font-weight: 600;
  transition: all 0.3s ease;
}

.facility-item:hover {
  background: linear-gradient(135deg, #FFE8D6, #FFD4B8);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.footer-col h3,
.footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p {
  color: #B0B0B0;
  line-height: 1.8;
  font-size: 14px;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-nav a {
  color: #B0B0B0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FF6B6B;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: #555555;
  margin-bottom: 8px;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #FF6B6B, #FFA726);
  color: #FFFFFF;
  border: none;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cookie-btn.reject {
  background: #F0F0F0;
  color: #666666;
}

.cookie-btn.reject:hover {
  background: #E0E0E0;
}

.cookie-btn.settings {
  background: transparent;
  color: #FF6B6B;
  border: 2px solid #FF6B6B;
}

.cookie-btn.settings:hover {
  background: #FF6B6B;
  color: #FFFFFF;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: #2C3E50;
  margin: 0;
}

.cookie-modal-close {
  background: #FF6B6B;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #FF5252;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F9F9F9;
  border-radius: 15px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 25px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #43A047;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #666666;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-footer {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
  padding: 12px 28px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero-content h1,
  .error-content h1 {
    font-size: 32px;
  }
  
  .hero-content p,
  .error-content p {
    font-size: 16px;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Grids - All become single column on mobile */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .contact-grid,
  .pricing-grid,
  .categories-grid,
  .courses-grid,
  .packages-grid,
  .articles-grid,
  .methods-grid,
  .hours-grid,
  .links-grid,
  .steps-grid,
  .options-grid,
  .rights-grid,
  .mission-grid,
  .facilities-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .contact-item,
  .pricing-card,
  .category-card,
  .course-card,
  .package-card,
  .article-card,
  .method-card,
  .right-card,
  .mission-card,
  .vision-card,
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  .hero,
  .error-hero,
  .legal-hero,
  .confirmation-hero {
    padding: 60px 16px;
  }
  
  /* Error Page */
  .error-code {
    font-size: 80px;
  }
  
  /* Legal Content */
  .legal-content {
    padding: 32px 20px;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-modal-content {
    padding: 24px 20px;
  }
  
  /* Footer */
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  /* Pricing Card Highlighted */
  .pricing-card.highlighted {
    transform: scale(1);
  }
  
  .pricing-card:hover {
    transform: translateY(-3px);
  }
  
  /* Package Card Highlighted */
  .package-card.highlighted {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .pricing-card .price {
    font-size: 28px;
  }
  
  .package-card .price {
    font-size: 32px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}