/* CSS Reset and 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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1B4B7F;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #555;
}

a {
  color: #1B4B7F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #C8A35F;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #555;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  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, #1B4B7F 0%, #2563A1 100%);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(27, 75, 127, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 75, 127, 0.4);
  background: linear-gradient(135deg, #2563A1 0%, #1B4B7F 100%);
}

.btn-secondary {
  background: #FFF;
  color: #1B4B7F;
  border: 2px solid #1B4B7F;
}

.btn-secondary:hover {
  background: #1B4B7F;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 75, 127, 0.2);
}

.btn-outline {
  background: transparent;
  color: #1B4B7F;
  border: 2px solid #1B4B7F;
}

.btn-outline:hover {
  background: #1B4B7F;
  color: #FFF;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #1B4B7F;
  color: #FFF;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(27, 75, 127, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C8A35F;
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1B4B7F 0%, #2563A1 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  background: #C8A35F;
  transform: translateX(8px);
}

/* Header */
.site-header {
  background: #FFF;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 30px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: #333;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C8A35F;
  border-bottom-color: #C8A35F;
}

.header-cta {
  display: flex;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #E8F1F8 0%, #FFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #1B4B7F;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  background: #FFF;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #1B4B7F;
  box-shadow: 0 4px 15px rgba(27, 75, 127, 0.15);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1B4B7F 0%, #2563A1 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  color: #FFF;
}

.page-hero h1 {
  color: #FFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: #FFF;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Sections */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

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

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

.stat-card {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 220px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C8A35F;
  font-family: 'Merriweather', serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 600;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.service-card h3 {
  color: #1B4B7F;
  margin-bottom: 16px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #C8A35F;
  margin: 16px 0;
}

/* Service Card Detailed */
.service-card-detailed {
  background: #FFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 20px);
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.service-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.service-card-detailed img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

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

.service-benefits li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #555;
}

.service-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C8A35F;
  font-weight: bold;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.detail {
  background: #E8F1F8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #1B4B7F;
  font-weight: 600;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.feature-card {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 20px);
  min-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.feature-card img {
  width: 64px;
  height: 64px;
}

.feature-card h3 {
  color: #1B4B7F;
  margin-bottom: 8px;
}

.feature-card p {
  color: #666;
  font-size: 15px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 25px);
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C8A35F 0%, #D4B574 100%);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  box-shadow: 0 4px 15px rgba(200, 163, 95, 0.3);
}

.step h3 {
  color: #1B4B7F;
  margin-bottom: 8px;
}

.step p {
  color: #666;
  font-size: 15px;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid #C8A35F;
}

.testimonial-author {
  color: #1B4B7F;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 4px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1B4B7F 0%, #2563A1 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 20px;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #FFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-section {
  background: linear-gradient(135deg, #2563A1 0%, #1B4B7F 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 20px;
}

/* Content Wrappers */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 20px;
  color: #1B4B7F;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 24px;
}

.pull-quote {
  font-size: 24px;
  line-height: 1.6;
  color: #1B4B7F;
  font-style: italic;
  font-family: 'Merriweather', serif;
  padding: 32px;
  background: #E8F1F8;
  border-radius: 16px;
  border-left: 6px solid #C8A35F;
  margin: 40px 0;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 20px);
  min-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.value-card img {
  width: 64px;
  height: 64px;
}

/* Expertise List */
.expertise-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.expertise-list li {
  padding: 16px 20px 16px 52px;
  position: relative;
  margin-bottom: 12px;
  background: #E8F1F8;
  border-radius: 12px;
  color: #333;
  font-weight: 600;
}

.expertise-list li:before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: #C8A35F;
  font-size: 20px;
  font-weight: bold;
}

/* Pillar Cards */
.approach-grid, .pillar-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.pillar-card {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.pillar-card img {
  width: 64px;
  height: 64px;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #1B4B7F 0%, #2563A1 100%);
}

thead th {
  color: #FFF;
  font-weight: 600;
  padding: 20px;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid #E8F1F8;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody td {
  padding: 20px;
  color: #555;
}

tbody tr:hover {
  background: #E8F1F8;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(27, 75, 127, 0.12);
}

.faq-item h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
}

/* Platform Features */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

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

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

/* Content Categories */
.content-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.category-tag {
  background: #E8F1F8;
  color: #1B4B7F;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-tag:hover {
  background: #C8A35F;
  color: #FFF;
  transform: scale(1.05);
}

/* Pricing */
.pricing-card {
  background: #FFF;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}

.price-display {
  font-size: 56px;
  font-weight: 700;
  color: #1B4B7F;
  font-family: 'Merriweather', serif;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.price-period {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.included-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  text-align: left;
}

.included-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555;
  font-size: 16px;
}

.included-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C8A35F;
  font-size: 20px;
  font-weight: bold;
}

.pricing-note {
  background: #E8F1F8;
  padding: 16px;
  border-radius: 12px;
  color: #1B4B7F;
  font-size: 15px;
  margin: 24px 0;
}

.guarantee-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C8A35F 0%, #D4B574 100%);
  color: #FFF;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin: 24px 0;
  box-shadow: 0 4px 15px rgba(200, 163, 95, 0.3);
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step-card {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.step-card img {
  width: 64px;
  height: 64px;
}

.timeframe {
  background: #E8F1F8;
  color: #1B4B7F;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.trial-highlight {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, #E8F1F8 0%, #FFF 100%);
  border-radius: 16px;
}

/* Events */
.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

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

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.event-date {
  display: inline-block;
  background: #C8A35F;
  color: #FFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
}

.event-speaker {
  color: #1B4B7F;
  font-weight: 600;
  font-size: 16px;
}

.event-type {
  background: #E8F1F8;
  color: #1B4B7F;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #666;
}

.event-details span {
  background: #E8F1F8;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Speakers */
.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

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

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.credentials {
  color: #666;
  font-size: 15px;
  font-weight: 600;
}

.expertise {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Booking Info */
.booking-info {
  background: #FFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.booking-info ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.booking-info li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555;
}

.booking-info li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C8A35F;
  font-weight: bold;
}

.semester-benefits {
  background: #FFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.semester-benefits ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.semester-benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555;
}

.semester-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C8A35F;
  font-weight: bold;
}

.calendar-note {
  background: #E8F1F8;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.calendar-note p {
  color: #1B4B7F;
  font-weight: 600;
  margin-bottom: 0;
}

/* Contact */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card {
  background: #FFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.contact-card img {
  width: 64px;
  height: 64px;
}

.response-time {
  background: #E8F1F8;
  color: #1B4B7F;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

/* Form */
.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background: #FFF;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #333;
  font-weight: 600;
  font-size: 15px;
}

.field-group input,
.field-group select,
.field-group textarea {
  padding: 14px 18px;
  border: 2px solid #E8F1F8;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: #FFF;
  color: #333;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: #1B4B7F;
  box-shadow: 0 0 0 4px rgba(27, 75, 127, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 14px;
  color: #555;
}

.form-note {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

/* Location */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.location-details {
  flex: 1 1 300px;
}

.address {
  font-size: 18px;
  color: #1B4B7F;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.6;
}

.location-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item h4 {
  color: #1B4B7F;
  margin-bottom: 8px;
}

.info-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* Hours Table */
.hours-table {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E8F1F8;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

.time {
  color: #1B4B7F;
  font-weight: 600;
  font-size: 16px;
}

.hours-note {
  margin-top: 24px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

/* Team Contacts */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

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

.team-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.role {
  color: #666;
  font-size: 15px;
  font-weight: 600;
}

.email {
  color: #1B4B7F;
  font-weight: 600;
}

.specialty {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Legal Content */
.legal-hero {
  background: linear-gradient(135deg, #1B4B7F 0%, #2563A1 100%);
}

.last-updated {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 8px;
}

.legal-content {
  padding: 60px 20px;
}

.legal-content h2 {
  color: #1B4B7F;
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #1B4B7F;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.7;
}

.cookie-types {
  margin-top: 32px;
}

.cookie-types h3 {
  color: #1B4B7F;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #E8F1F8 0%, #FFF 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.confirmation-message {
  font-size: 20px;
  color: #1B4B7F;
  font-weight: 600;
  margin-bottom: 0;
}

.confirmation-note {
  font-size: 16px;
  color: #666;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.resource-card {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
}

.resource-card img {
  width: 64px;
  height: 64px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.link-card {
  background: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(27, 75, 127, 0.15);
  background: linear-gradient(135deg, #E8F1F8 0%, #FFF 100%);
}

.link-card h3 {
  color: #1B4B7F;
  margin-bottom: 8px;
}

.link-card p {
  color: #666;
  font-size: 15px;
}

.contact-box {
  background: linear-gradient(135deg, #1B4B7F 0%, #2563A1 100%);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  color: #FFF;
}

.contact-box h2 {
  color: #FFF;
  margin-bottom: 16px;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-details {
  margin-top: 24px;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-details a {
  color: #C8A35F;
  font-weight: 600;
}

.trial-offer {
  font-size: 20px;
  color: #C8A35F;
  font-weight: 600;
  margin-bottom: 24px;
}

.cta-note {
  color: #666;
  font-size: 14px;
  margin-top: 16px;
}

.urgency-note {
  color: #C8A35F;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
}

.contact-info {
  margin-top: 24px;
}

.contact-info p {
  color: #666;
  font-size: 16px;
}

.contact-info a {
  color: #1B4B7F;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1B4B7F 0%, #2563A1 100%);
  color: #FFF;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 250px;
}

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

.footer-column h4 {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #C8A35F;
}

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

.footer-nav a {
  font-size: 15px;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

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

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #333;
  font-size: 15px;
}

.cookie-text a {
  color: #1B4B7F;
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

#cookie-settings {
  background: transparent;
  color: #1B4B7F;
  border: 2px solid #1B4B7F;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cookie-settings:hover {
  background: #E8F1F8;
}

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

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

.modal-content {
  background: #FFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E8F1F8;
  color: #1B4B7F;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #1B4B7F;
  color: #FFF;
}

.modal-content h2 {
  color: #1B4B7F;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #E8F1F8;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.category-header h3 {
  color: #1B4B7F;
  font-size: 18px;
  margin-bottom: 0;
}

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

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

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

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #FFF;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: #1B4B7F;
}

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

input:disabled + .toggle-slider {
  background: #C8A35F;
  cursor: not-allowed;
}

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

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

.modal-buttons .btn {
  flex: 1;
  min-width: 140px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Page Hero */
  .page-hero h1 {
    font-size: 28px;
  }
  
  /* Grids - All flex-based with wrapping */
  .stats-grid,
  .services-grid,
  .features-grid,
  .process-steps,
  .testimonials-grid,
  .values-grid,
  .approach-grid,
  .benefits-grid,
  .events-grid,
  .speakers-grid,
  .contact-cards,
  .team-grid,
  .resources-grid,
  .links-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .stat-card,
  .service-card,
  .service-card-detailed,
  .feature-card,
  .step,
  .testimonial-card,
  .value-card,
  .pillar-card,
  .benefit-card,
  .event-card,
  .speaker-card,
  .contact-card,
  .team-contact-card,
  .resource-card,
  .link-card,
  .step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* CTA sections */
  .cta-banner,
  .cta-section {
    padding: 40px 20px;
    margin: 40px 10px;
  }
  
  .cta-content h2 {
    font-size: 26px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Form */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Table */
  .comparison-table {
    overflow-x: scroll;
  }
  
  table {
    min-width: 600px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn,
  #cookie-settings {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 30px 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn {
    width: 100%;
  }
  
  /* Location */
  .location-content {
    flex-direction: column;
  }
}

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

.hero-content,
.section-header,
.service-card,
.feature-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(27, 75, 127, 0.3);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}