/* 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', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

li {
  margin-bottom: 8px;
  line-height: 1.7;
}

a {
  color: #2C5F7C;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E8B86D;
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, rgba(42, 95, 124, 0.95) 0%, rgba(26, 74, 99, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8B86D 0%, #D4A14E 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E8B86D;
}

.main-nav 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, #2C5F7C 0%, #1A4A63 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #E8B86D 0%, #D4A14E 100%);
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A4A63 0%, #2C5F7C 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  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.1);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8B86D;
  padding-left: 12px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #F5F5F5;
  margin-bottom: 24px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: #FFFFFF;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

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

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

.trust-indicator {
  font-size: 14px;
  color: #E8B86D;
  font-weight: 600;
  margin-top: 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #E8B86D 0%, #D4A14E 100%);
  color: #1A4A63;
  border-color: #E8B86D;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4A14E 0%, #C49345 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 109, 0.4);
  color: #1A4A63;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.section-intro, .section-description {
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Value Proposition */
.value-proposition {
  background: linear-gradient(135deg, rgba(139, 157, 119, 0.95) 0%, rgba(115, 130, 98, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.value-proposition h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E8B86D 0%, #D4A14E 100%);
  transition: left 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
  left: 0;
}

.benefit-card h3 {
  color: #2C5F7C;
  font-size: 18px;
  margin-bottom: 0;
}

/* Services Overview */
.services-overview {
  background: linear-gradient(135deg, rgba(26, 74, 99, 0.95) 0%, rgba(44, 95, 124, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.services-overview h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.3);
}

.service-card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #E8B86D;
  margin: 16px 0;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Process Section */
.process {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.process h2 {
  text-align: center;
  color: #1A4A63;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #E8B86D;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.2);
}

.step h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #5A6C7D;
  font-size: 14px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.testimonials h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: rgba(232, 184, 109, 0.2);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

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

.author {
  font-weight: 700;
  color: #2C5F7C;
  font-size: 14px;
  text-align: right;
}

.role {
  color: #8B9D77;
  font-size: 14px;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #E8B86D 0%, #D4A14E 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(232, 184, 109, 0.3);
}

.cta-section h2 {
  color: #1A4A63;
  margin-bottom: 16px;
}

.cta-section p {
  color: #1A4A63;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.reassurance {
  font-size: 14px;
  color: #1A4A63;
  margin-top: 16px;
  font-style: italic;
}

/* Mission Vision Section */
.mission-vision {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision h2 {
  color: #2C5F7C;
  margin-top: 32px;
}

.mission-vision h3 {
  color: #2C5F7C;
  margin-top: 24px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Story Section */
.story {
  background: linear-gradient(135deg, rgba(139, 157, 119, 0.95) 0%, rgba(115, 130, 98, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story h2 {
  color: #FFFFFF;
  text-align: center;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.milestone {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 16px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
  font-weight: 600;
  color: #2C5F7C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team {
  background: linear-gradient(135deg, rgba(26, 74, 99, 0.95) 0%, rgba(44, 95, 124, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.team h2 {
  color: #FFFFFF;
  text-align: center;
}

.team > .container > p {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

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

.team-member {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.3);
}

.team-member h3 {
  color: #2C5F7C;
  margin-bottom: 8px;
}

.team-member .role {
  color: #E8B86D;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.team-member p {
  color: #5A6C7D;
  font-size: 14px;
}

/* Approach Section */
.approach {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.approach h2 {
  color: #1A4A63;
  text-align: center;
}

.approach > .container > p {
  text-align: center;
  color: #5A6C7D;
  margin-bottom: 40px;
}

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

.principle {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #8B9D77;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.principle:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 157, 119, 0.2);
}

.principle h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.principle p {
  color: #5A6C7D;
  font-size: 14px;
}

/* Services Detailed */
.services-detailed {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-item {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #2C5F7C;
  position: relative;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(44, 95, 124, 0.15);
}

.service-item h2 {
  color: #2C5F7C;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-item p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

.service-item ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-item li {
  color: #5A6C7D;
  margin-bottom: 12px;
  position: relative;
}

.service-item li::before {
  content: '✓';
  color: #8B9D77;
  font-weight: 700;
  position: absolute;
  left: -24px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #E8B86D 0%, #D4A14E 100%);
  color: #1A4A63;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Workshops */
.workshops {
  background: linear-gradient(135deg, rgba(139, 157, 119, 0.95) 0%, rgba(115, 130, 98, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.workshops h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.workshop-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.3);
}

.workshop-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.workshop-card p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 8px;
}

.date, .format {
  font-weight: 600;
  color: #8B9D77;
  font-size: 14px;
}

/* Workshop Series */
.workshop-series {
  background: linear-gradient(135deg, rgba(26, 74, 99, 0.95) 0%, rgba(44, 95, 124, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.workshop-series h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.series-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 320px;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.series-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.3);
}

.series-card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.series-card p {
  color: #5A6C7D;
  font-size: 14px;
}

/* Workshop Benefits */
.workshop-benefits {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.workshop-benefits h2 {
  color: #1A4A63;
  text-align: center;
}

/* Resources */
.featured-resources {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.featured-resources h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.resource-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.3);
}

.resource-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.resource-type {
  font-size: 12px;
  color: #8B9D77;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.resource-card p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Blog Articles */
.blog-articles {
  background: linear-gradient(135deg, rgba(139, 157, 119, 0.95) 0%, rgba(115, 130, 98, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-articles h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.article-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.3);
}

.article-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.article-card p {
  color: #5A6C7D;
  font-size: 14px;
}

.read-time {
  font-size: 12px;
  color: #8B9D77;
  font-weight: 600;
  margin-top: 12px;
}

/* Practical Exercises */
.practical-exercises {
  background: linear-gradient(135deg, rgba(26, 74, 99, 0.95) 0%, rgba(44, 95, 124, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.practical-exercises h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.exercise-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.exercise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 184, 109, 0.3);
}

.exercise-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.duration {
  font-size: 12px;
  color: #E8B86D;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.exercise-card p {
  color: #5A6C7D;
  font-size: 14px;
}

/* Contact Options */
.contact-options {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.option-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 320px;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(139, 157, 119, 0.2);
}

.option-card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.option-card p {
  color: #5A6C7D;
}

.contact-info {
  font-weight: 700;
  color: #2C5F7C;
  font-size: 18px;
  margin-top: 12px;
}

/* Contact Details */
.contact-details {
  background: linear-gradient(135deg, rgba(139, 157, 119, 0.95) 0%, rgba(115, 130, 98, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.detail-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.detail-block h2 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.detail-block h3 {
  color: #2C5F7C;
  margin-top: 24px;
  margin-bottom: 12px;
}

.detail-block p {
  color: #5A6C7D;
  line-height: 1.8;
}

/* First Session Info */
.first-session-info {
  background: linear-gradient(135deg, rgba(26, 74, 99, 0.95) 0%, rgba(44, 95, 124, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.first-session-info h2 {
  color: #FFFFFF;
  text-align: center;
}

.first-session-info > .container > p {
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

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

.steps-grid .step {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  border-left: 4px solid #E8B86D;
}

.steps-grid .step p {
  color: #2C5F7C;
  font-weight: 600;
}

.first-session-info .reassurance {
  color: #E8B86D;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
}

/* Emergency Note */
.emergency-note {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.1) 0%, rgba(255, 100, 100, 0.1) 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 77, 77, 0.3);
  padding: 32px;
}

.emergency-note h2 {
  color: #D32F2F;
  margin-bottom: 16px;
}

.emergency-note p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

.emergency-note ul {
  list-style: none;
  padding-left: 0;
}

.emergency-note li {
  color: #D32F2F;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 77, 77, 0.1);
}

/* Legal Content */
.legal-content {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
}

.legal-content h1 {
  color: #1A4A63;
  text-align: center;
  margin-bottom: 16px;
}

.subtitle {
  text-align: center;
  color: #8B9D77;
  font-size: 18px;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #2C5F7C;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

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

.legal-content li {
  color: #5A6C7D;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(139, 157, 119, 0.95) 0%, rgba(115, 130, 98, 0.95) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8B86D 0%, #D4A14E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #FFFFFF;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.4);
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

.thank-you-hero .hero-subtitle {
  color: #FFFFFF;
}

.confirmation {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.confirmation h2 {
  color: #2C5F7C;
  margin-top: 32px;
}

.confirmation p {
  color: #5A6C7D;
}

.confirmation ul {
  list-style: none;
  padding-left: 0;
}

.confirmation li {
  color: #5A6C7D;
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
}

.confirmation li::before {
  content: '✓';
  color: #8B9D77;
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 18px;
}

.meanwhile {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.meanwhile h2 {
  color: #FFFFFF;
  text-align: center;
}

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

.suggestion-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 450px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.suggestion-card p {
  color: #5A6C7D;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1A4A63 0%, #2C5F7C 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.footer-nav a {
  color: #E8E8E8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #E8B86D;
  padding-left: 8px;
}

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 74, 99, 0.98) 0%, rgba(44, 95, 124, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #E8B86D 0%, #D4A14E 100%);
  color: #1A4A63;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #D4A14E 0%, #C49345 100%);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #E8B86D;
  border-color: #E8B86D;
}

.cookie-btn-settings:hover {
  background: rgba(232, 184, 109, 0.1);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #5A6C7D;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(232, 184, 109, 0.1);
  color: #2C5F7C;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  border-left: 4px solid #8B9D77;
}

.cookie-category h3 {
  color: #2C5F7C;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.cookie-toggle label {
  font-size: 14px;
  color: #5A6C7D;
  font-weight: 600;
}

.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: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #8B9D77 0%, #7A8A6A 100%);
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .team-grid,
  .principles-grid,
  .workshop-grid,
  .series-grid,
  .resource-grid,
  .article-grid,
  .exercise-grid,
  .options-grid,
  .details-grid,
  .steps-grid,
  .suggestions-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .team-member,
  .principle,
  .workshop-card,
  .series-card,
  .resource-card,
  .article-card,
  .exercise-card,
  .option-card,
  .detail-block,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  /* Footer */
  footer {
    padding: 40px 16px 16px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .benefit-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .team-member {
    flex: 1 1 calc(50% - 16px);
  }
}

/* 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) {
  * {
    scroll-behavior: smooth;
  }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #E8B86D;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}