/* 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: #4A5568;
  background-color: #FFF9F5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Soft Pastel Color Palette */
:root {
  --pastel-lavender: #E6D5F5;
  --pastel-mint: #D5F5E6;
  --pastel-peach: #FFE5D9;
  --pastel-sky: #D9E8FF;
  --pastel-rose: #FFD9E6;
  --pastel-cream: #FFF9F5;
  --pastel-lilac: #F0E6FF;
  --text-dark: #5A5568;
  --text-medium: #7A7588;
  --text-light: #9A95A8;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(230, 213, 245, 0.3);
  --shadow-medium: 0 8px 30px rgba(230, 213, 245, 0.4);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

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

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  padding: 20px 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  margin-left: 30px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
}

.main-nav a:hover {
  color: var(--text-medium);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-rose));
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-rose));
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 1001;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(230, 213, 245, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(230, 213, 245, 0.4);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: var(--pastel-rose);
}

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  transform: translateX(10px);
  background: var(--pastel-peach);
  box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 50%, var(--pastel-sky) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-medium);
}

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

.hero h1 {
  color: var(--text-dark);
  margin-bottom: 24px;
  font-size: 36px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.trust-line {
  font-size: 16px;
  color: var(--text-medium);
  margin-top: 16px;
}

.response-promise {
  font-size: 16px;
  color: var(--text-medium);
  margin-top: 16px;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-rose));
  color: var(--text-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-lavender));
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--pastel-lavender);
  box-shadow: var(--shadow-medium);
}

.btn-link {
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-rose));
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

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

/* Problem Solution Section */
.problem-solution {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.problem-solution h2 {
  margin-bottom: 40px;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.problem-item {
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-rose));
  padding: 20px 24px;
  border-radius: 20px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.solution-statement {
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 600;
  margin: 40px 0 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Overview */
.services-overview {
  background: linear-gradient(135deg, var(--pastel-sky) 0%, var(--pastel-mint) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

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

.service-card h3 {
  color: var(--text-dark);
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  color: var(--text-medium);
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 0;
}

/* Value Proposition */
.value-proposition {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.value-card {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-lilac));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
}

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

.value-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-medium);
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

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

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

.stat-item h3 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  font-size: 16px;
  color: var(--text-medium);
}

/* Testimonials */
.testimonials {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.client-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 16px;
  font-style: normal;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-rose) 50%, var(--pastel-peach) 100%);
  padding: 80px 20px;
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.cta-banner h2 {
  color: var(--text-dark);
  margin-bottom: 24px;
}

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

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

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

/* Story Section */
.story {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

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

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

.content-wrapper p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.mission-statement {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-lavender));
  padding: 24px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin: 32px 0;
  box-shadow: var(--shadow-soft);
}

.values-list {
  list-style: none;
  margin: 32px 0;
}

.values-list li {
  background: var(--pastel-peach);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--pastel-sky) 0%, var(--pastel-mint) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.team h2 {
  text-align: center;
  margin-bottom: 48px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.team-member {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.team-member h3 {
  margin-bottom: 8px;
}

.role {
  color: var(--text-medium);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
}

.qualifications {
  text-align: center;
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 500;
  margin-top: 32px;
}

/* Approach Section */
.approach {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.approach h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.approach-card {
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-rose));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
}

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

.approach-card h3 {
  margin-bottom: 12px;
}

/* Credentials Section */
.credentials {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-lilac));
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.credentials h2 {
  margin-bottom: 32px;
}

.credential-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.credential-list li {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 20px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

/* Services Detailed */
.services-detailed {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

.service-card-detailed {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

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

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

.service-card-detailed ul {
  list-style: none;
  margin: 16px 0;
}

.service-card-detailed ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-medium);
}

.service-card-detailed ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text-dark);
  font-weight: 700;
}

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

.service-card-detailed .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 0;
}

/* Service Packages */
.service-packages {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.service-packages h2 {
  text-align: center;
  margin-bottom: 48px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.package-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.package-card h3 {
  margin-bottom: 16px;
}

.discount {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-rose));
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-block;
  margin-top: 16px;
}

.package-note {
  text-align: center;
  color: var(--text-medium);
  font-style: italic;
  margin-top: 24px;
}

/* FAQs Section */
.faqs {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.faqs h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, var(--pastel-lilac), var(--pastel-lavender));
  padding: 24px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.faq-item h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-medium);
  margin: 0;
}

/* Process Section */
.process {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sky) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-rose));
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
}

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

/* Principles Section */
.principles {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.principles h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.principle-card {
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-rose));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.principle-card h3 {
  margin-bottom: 12px;
}

/* Communication Section */
.communication {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-lilac));
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.communication h2 {
  text-align: center;
  margin-bottom: 32px;
}

.communication-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.communication-list li {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 15px;
  color: var(--text-medium);
  box-shadow: var(--shadow-soft);
}

.communication p {
  text-align: center;
  max-width: 700px;
  margin: 24px auto 0;
}

/* Timelines Section */
.timelines {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.timelines h2 {
  text-align: center;
  margin-bottom: 32px;
}

.timeline-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-list li {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  padding: 20px 24px;
  border-radius: 15px;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.timelines p {
  text-align: center;
  max-width: 700px;
  margin: 24px auto 0;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.pricing h2 {
  margin-bottom: 24px;
}

.pricing p {
  max-width: 700px;
  margin: 16px auto;
  color: var(--text-dark);
}

/* Resource Categories */
.resource-categories {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.resource-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.category-card {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.category-card h3 {
  margin-bottom: 12px;
}

/* Featured Resources */
.featured-resources {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-lilac) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.featured-resources h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.resource-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

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

.resource-card h3 {
  margin-bottom: 8px;
}

.resource-type {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--pastel-peach);
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
}

/* Articles Section */
.articles {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.articles h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.article-card {
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-rose));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

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

.article-card h3 {
  margin-bottom: 12px;
}

.article-meta {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Guides Section */
.guides {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sky) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.guides h2 {
  text-align: center;
  margin-bottom: 32px;
}

.guides-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guides-list li {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 15px;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.guides-list li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.guides p {
  text-align: center;
  max-width: 700px;
  margin: 24px auto 0;
}

/* Newsletter Section */
.newsletter {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 32px;
}

.newsletter-benefits {
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-benefits li {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-lilac));
  padding: 16px 24px;
  border-radius: 15px;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.subscriber-count {
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 16px;
}

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

/* Contact Content */
.contact-content {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form-section {
  flex: 1 1 calc(60% - 40px);
  min-width: 300px;
}

.contact-info-section {
  flex: 1 1 calc(40% - 40px);
  min-width: 250px;
}

.form-placeholder {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.form-placeholder p {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.form-note {
  background: var(--pastel-peach);
  padding: 16px;
  border-radius: 12px;
  margin: 24px 0;
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-lilac));
  padding: 24px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.contact-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

/* Consultation Info */
.consultation-info {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.consultation-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.expectations-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expectations-list li {
  background: var(--white);
  padding: 16px 20px;
  border-radius: 15px;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  padding-left: 48px;
  position: relative;
}

.expectations-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 18px;
}

.no-pressure {
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 24px;
  background: var(--white);
  padding: 16px;
  border-radius: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Signals */
.trust-signals {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.trust-signals h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.signal-card {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.signal-card h3 {
  margin-bottom: 8px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 50%, var(--pastel-rose) 100%);
}

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

.next-steps {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step-item {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-lilac));
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.step-item .step-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Meanwhile Section */
.meanwhile {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.meanwhile h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.link-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.link-card h3 {
  margin-bottom: 12px;
}

.link-card a {
  color: var(--text-dark);
  font-weight: 600;
}

.link-card a:hover {
  color: var(--text-medium);
}

.testimonial {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.testimonial h2 {
  margin-bottom: 32px;
}

.testimonial .testimonial-card {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: left;
}

/* Legal Page */
.legal-page {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 16px;
}

.last-updated {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  font-style: italic;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

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

.legal-content a {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-sky) 50%, var(--pastel-mint) 100%);
  padding: 60px 20px 24px;
  margin-top: 80px;
  box-shadow: var(--shadow-soft);
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 16px;
}

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

.footer-col nav a {
  color: var(--text-medium);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: var(--text-dark);
  transform: translateX(5px);
}

.footer-col p {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(90, 85, 104, 0.1);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-lilac));
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(230, 213, 245, 0.4);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  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: var(--text-dark);
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  color: var(--text-dark);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.cookie-btn-reject {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--pastel-rose);
}

.cookie-btn-reject:hover {
  background: var(--pastel-rose);
}

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

.cookie-btn-settings:hover {
  background: var(--text-dark);
  color: var(--white);
}

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

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

.cookie-modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
  max-height: 80vh;
  overflow-y: auto;
}

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

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

.cookie-modal-close {
  width: 32px;
  height: 32px;
  background: var(--pastel-rose);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-category {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

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

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

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--text-light);
  transition: 0.4s;
  border-radius: 26px;
}

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

input:checked + .cookie-slider {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-rose));
}

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

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

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

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

/* Responsive Design */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero-subheadline {
    font-size: 20px;
  }
  
  .problem-item {
    flex: 1 1 calc(33.333% - 20px);
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .team-member {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .process-step {
    flex-direction: row;
    align-items: center;
  }
  
  .step-number {
    flex-shrink: 0;
  }
  
  .contact-form-section {
    flex: 1 1 calc(60% - 40px);
  }
  
  .contact-info-section {
    flex: 1 1 calc(40% - 40px);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .problem-item {
    flex: 1 1 100%;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .value-card {
    flex: 1 1 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .team-member {
    flex: 1 1 100%;
  }
  
  .approach-card {
    flex: 1 1 100%;
  }
  
  .principle-card {
    flex: 1 1 100%;
  }
  
  .service-card-detailed {
    flex: 1 1 100%;
  }
  
  .package-card {
    flex: 1 1 100%;
  }
  
  .category-card {
    flex: 1 1 100%;
  }
  
  .resource-card {
    flex: 1 1 100%;
  }
  
  .article-card {
    flex: 1 1 100%;
  }
  
  .step-item {
    flex: 1 1 100%;
  }
  
  .link-card {
    flex: 1 1 100%;
  }
  
  .signal-card {
    flex: 1 1 100%;
  }
  
  .contact-form-section,
  .contact-info-section {
    flex: 1 1 100%;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Accessibility */
*:focus {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 2px;
}

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