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

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

body {
  font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8F0 100%);
  min-height: 100vh;
}

/* Soft Pastel Color Scheme */
:root {
  --primary: #FFB3D9;
  --primary-dark: #FF8FC7;
  --secondary: #C5A3D9;
  --accent: #FFD4A3;
  --text-dark: #6B5B7A;
  --text-light: #9B8AA8;
  --background: #FFF5F7;
  --surface: #FFFFFF;
  --border: #FFD4E8;
  --shadow: rgba(255, 179, 217, 0.2);
  --shadow-hover: rgba(255, 143, 199, 0.3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka One', 'Comic Sans MS', cursive;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: var(--primary-dark);
}

h2 {
  font-size: 32px;
  color: var(--secondary);
}

h3 {
  font-size: 24px;
  color: var(--text-dark);
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

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

/* Header */
header {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 24px 0;
  box-shadow: 0 4px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--border);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Navigation */
.main-nav {
  display: none;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: transparent;
}

.main-nav a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, #FFD4E8 100%);
  color: var(--surface);
  transform: translateY(-2px);
}

/* CTA Buttons in Header */
.cta-buttons {
  display: none;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent) 0%, #FFE8C4 100%);
  color: var(--text-dark);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 212, 163, 0.4);
  background: linear-gradient(135deg, #FFE8C4 0%, var(--accent) 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
  border: none;
  border-radius: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px var(--shadow-hover);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--surface) 0%, #FFF9FC 100%);
  z-index: 200;
  transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 4px 0 20px var(--shadow);
  overflow-y: auto;
  padding: 24px;
  border-right: 3px solid var(--border);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--secondary) 0%, #D4B4E6 100%);
  color: var(--surface);
  border: none;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(197, 163, 217, 0.3);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #D4B4E6 0%, var(--secondary) 100%);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 60px;
}

.mobile-nav a {
  padding: 16px 20px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 18px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: transparent;
  display: block;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, #FFD4E8 100%);
  color: var(--surface);
  transform: translateX(10px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFD4E8 0%, #FFE8F0 50%, #F5E8FF 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px var(--shadow);
}

.hero h1 {
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px var(--shadow);
}

.tagline {
  font-size: 24px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Fredoka One', cursive;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--text-dark);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FFD4E8 0%, #F5E8FF 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px var(--shadow);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-light);
}

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

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

.highlight-box {
  background: linear-gradient(135deg, var(--accent) 0%, #FFE8C4 100%);
  padding: 20px;
  border-radius: 20px;
  margin-top: 24px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 212, 163, 0.3);
}

.highlight-box p {
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
}

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

section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Feature Grid */
.features {
  background: var(--surface);
  border-radius: 40px;
  box-shadow: 0 8px 24px var(--shadow);
}

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

.feature-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 500px;
  border: 2px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

/* Service Grid */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.service-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--secondary);
}

.service-card h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: auto;
  padding-top: 16px;
}

/* Service Detail */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px var(--shadow-hover);
  border-color: var(--primary);
}

.service-detail h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  margin-top: 16px;
  padding-left: 0;
}

.service-detail ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-dark);
}

.service-detail ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 18px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #F5E8FF 0%, #FFE8F0 100%);
  border-radius: 40px;
  box-shadow: 0 8px 24px var(--shadow);
}

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

.testimonial-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px var(--shadow-hover);
  border-color: var(--accent);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 16px;
}

.author {
  font-weight: 700;
  color: var(--primary-dark);
  font-style: normal;
  margin-top: auto;
}

/* Category Grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 380px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.category-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--secondary);
}

.category-card h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.count {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: auto;
}

/* Steps */
.steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px var(--shadow);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px var(--shadow-hover);
  border-color: var(--accent);
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Fredoka One', cursive;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  margin: 0;
  font-size: 14px;
}

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

.value-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 500px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px var(--shadow-hover);
  border-color: var(--primary);
}

.value-card h3 {
  color: var(--primary-dark);
}

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

.team-member,
.team-contact-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 380px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.team-member:hover,
.team-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--secondary);
}

.team-member h3,
.team-contact-card h3 {
  color: var(--secondary);
  margin-bottom: 8px;
}

.role {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.specialization,
.email {
  font-size: 14px;
  color: var(--text-light);
}

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

.stat {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px var(--shadow-hover);
  border-color: var(--accent);
}

.number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Fredoka One', cursive;
  margin-bottom: 8px;
}

.label {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

/* Events */
.event-grid,
.type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.event-card,
.type-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.event-card:hover,
.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.event-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.event-time {
  font-size: 14px;
  color: var(--text-light);
  margin: 8px 0;
}

.capacity {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: auto;
}

.frequency {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: auto;
}

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

.contact-method {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 380px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--accent);
}

.contact-method h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.detail {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 8px 0;
}

.response {
  font-size: 14px;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 16px;
}

/* Location */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.address,
.transport {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  border: 2px solid var(--border);
}

.address h3,
.transport h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

/* Hours */
.hours {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  max-width: 600px;
  margin: 32px auto 0;
  text-align: center;
  border: 2px solid var(--border);
}

.hours p {
  font-size: 18px;
  margin-bottom: 12px;
}

.notice {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* CTA Section */
.cta-section,
.cta-banner {
  background: linear-gradient(135deg, #FFD4E8 0%, #F5E8FF 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  box-shadow: 0 8px 24px var(--shadow);
}

.cta-section h2,
.cta-banner h2 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.cta-section p,
.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

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

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #FFD4E8 0%, #F5E8FF 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px var(--shadow);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.confirmation {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.next-steps {
  font-size: 16px;
  color: var(--text-dark);
}

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

.link-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 16px var(--shadow);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 500px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.link-card h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.link-card p {
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  background: var(--surface);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 4px 12px var(--shadow);
  margin-bottom: 32px;
  border: 2px solid var(--border);
}

.text-section h2 {
  color: var(--primary-dark);
  text-align: left;
  margin-bottom: 16px;
}

.text-section h3 {
  color: var(--secondary);
  margin-top: 16px;
}

.text-section p {
  color: var(--text-dark);
}

.mission {
  background: linear-gradient(135deg, #FFD4E8 0%, #FFE8F0 100%);
  padding: 32px;
  border-radius: 25px;
  margin-top: 32px;
  box-shadow: 0 4px 12px var(--shadow);
  border: 2px solid var(--border);
}

.mission h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

/* Library Info */
.library-info {
  background: linear-gradient(135deg, #F5E8FF 0%, #FFE8F0 100%);
  border-radius: 40px;
  box-shadow: 0 8px 24px var(--shadow);
}

.library-info h2 {
  color: var(--secondary);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #8B7A9A 100%);
  color: var(--surface);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 40px 40px 0 0;
}

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

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

.footer-col h3 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 20px;
}

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

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col nav a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: #FFFFFF;
  font-size: 14px;
}

.legal-links a:hover {
  color: var(--accent);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9FC 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 150;
  border-top: 3px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin: 0;
  color: var(--text-dark);
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-hover);
}

.cookie-reject {
  background: linear-gradient(135deg, var(--secondary) 0%, #D4B4E6 100%);
  color: var(--surface);
}

.cookie-reject:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 163, 217, 0.4);
}

.cookie-settings {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.cookie-settings:hover {
  background: var(--border);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 91, 122, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--border);
}

.modal-content h2 {
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.cookie-category {
  background: linear-gradient(135deg, #FFF9FC 0%, var(--surface) 100%);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 2px solid var(--border);
}

.cookie-category h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #E0E0E0;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--primary);
}

.cookie-toggle input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface);
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked:before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* Responsive Design */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .cta-buttons {
    display: flex;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .tagline {
    font-size: 20px;
  }

  .feature-card,
  .service-card,
  .category-card,
  .value-card,
  .team-member,
  .team-contact-card,
  .contact-method,
  .event-card,
  .type-card,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .stat,
  .step {
    flex: 1 1 calc(50% - 24px);
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stat,
  .step {
    flex: 1 1 100%;
  }

  .number {
    font-size: 36px;
  }

  .step-number {
    font-size: 36px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

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

.feature-card,
.service-card,
.testimonial-card,
.category-card,
.value-card,
.team-member,
.event-card {
  animation: fadeIn 0.6s ease-out;
}

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

  body {
    background: white;
  }

  section {
    page-break-inside: avoid;
  }
}