/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul, ol {
  list-style-position: inside;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D3748;
  margin-bottom: 16px;
}

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

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

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;
}

/* ========================================
   LAYOUT CONTAINER
   ======================================== */

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

/* ========================================
   HEADER
   ======================================== */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

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

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

.main-nav a:hover {
  color: #4299E1;
  border-bottom-color: #F6AD55;
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #4299E1;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #2D3748;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #F6AD55;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2D3748;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #FFF5EB;
  color: #4299E1;
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.btn-primary {
  background-color: #4299E1;
  color: white;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.btn-primary:hover {
  background-color: #3182CE;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 153, 225, 0.4);
}

.btn-secondary {
  background-color: #F6AD55;
  color: white;
  box-shadow: 0 4px 12px rgba(246, 173, 85, 0.3);
}

.btn-secondary:hover {
  background-color: #ED8936;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(246, 173, 85, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF5EB 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 {
  color: #2D3748;
  font-size: 48px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 16px;
  line-height: 1.6;
}

.value-proposition {
  background-color: #FFFFFF;
  padding: 20px 32px;
  border-radius: 16px;
  font-weight: 600;
  color: #4299E1;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #2D3748;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-internal {
  background: linear-gradient(135deg, #4299E1 0%, #3182CE 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  text-align: center;
}

.hero-internal h1 {
  color: white;
  font-size: 48px;
}

.hero-internal p {
  color: white;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.hero-legal {
  background-color: #2D3748;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-legal h1 {
  color: white;
}

.hero-legal p {
  color: #E2E8F0;
  font-size: 16px;
}

.highlight {
  background-color: #90acbc;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: #F6AD55;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   SECTIONS
   ======================================== */

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

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

/* ========================================
   PROBLEM-SOLUTION SECTION
   ======================================== */

.problem-solution {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.problem {
  font-size: 20px;
  color: #E53E3E;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.solution {
  font-size: 20px;
  color: #38A169;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.pain-points li {
  padding: 16px 20px;
  background-color: #FFF5EB;
  border-radius: 12px;
  border-left: 4px solid #F6AD55;
  font-weight: 500;
}

/* ========================================
   SERVICES GRID
   ======================================== */

.services-overview {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
}

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

.service-card {
  background-color: #FFF5EB;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #4299E1;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF5EB 100%);
  border-radius: 24px;
  padding: 60px 40px;
}

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

.benefit {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit h3 {
  color: #4299E1;
  margin-bottom: 12px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
}

.testimonial-card {
  background-color: #FFF5EB;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #F6AD55;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2D3748;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
  font-style: normal;
  margin-bottom: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
  background: linear-gradient(135deg, #4299E1 0%, #3182CE 100%);
  border-radius: 24px;
  padding: 60px 40px;
}

.stats h2 {
  color: white;
}

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

.stat {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #F6AD55;
  margin-bottom: 8px;
}

.stat .label {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: 600;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta, .cta-final {
  background: linear-gradient(135deg, #F6AD55 0%, #ED8936 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.cta h2, .cta-final h2 {
  color: white;
  margin-bottom: 16px;
}

.cta p, .cta-final p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

.trust, .guarantee {
  margin-top: 24px;
  color: white;
  font-size: 14px;
  font-style: italic;
}

.urgency {
  background-color: #FFFFFF;
  color: #E53E3E;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
}

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

.team-member {
  background-color: #FFF5EB;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.team-member .role {
  color: #4299E1;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ========================================
   SERVICES DETAILED
   ======================================== */

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #4299E1;
}

.service-detail h2 {
  color: #2D3748;
  text-align: left;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 18px;
  color: #4299E1;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.service-detail h3 {
  color: #2D3748;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.service-detail ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.service-detail ul li {
  margin-bottom: 8px;
  color: #4A5568;
}

/* ========================================
   PACKAGES
   ======================================== */

.packages {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF5EB 100%);
  border-radius: 24px;
  padding: 60px 40px;
}

.package-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.package-card h3 {
  color: #2D3748;
  margin-bottom: 16px;
}

.package-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #4299E1;
  margin: 16px 0;
}

.package-card .old {
  font-size: 20px;
  color: #A0AEC0;
  text-decoration: line-through;
  margin-right: 12px;
}

.package-card .savings {
  color: #38A169;
  font-weight: 600;
  font-size: 16px;
}

/* ========================================
   WORKSHOPS
   ======================================== */

.upcoming-workshops {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workshop-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  border-left: 6px solid #F6AD55;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.workshop-card h3 {
  color: #2D3748;
  margin-bottom: 8px;
}

.workshop-card .date,
.workshop-card .location,
.workshop-card .spots {
  color: #4A5568;
  font-size: 14px;
  margin-bottom: 4px;
}

.workshop-card .spots {
  color: #E53E3E;
  font-weight: 600;
}

.workshop-formats {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
}

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

.format {
  background-color: #FFF5EB;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
}

.format h3 {
  color: #4299E1;
  margin-bottom: 12px;
}

.format ul {
  padding-left: 20px;
}

.format ul li {
  margin-bottom: 8px;
  color: #4A5568;
}

.learning-paths {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF5EB 100%);
  border-radius: 24px;
  padding: 60px 40px;
}

.path {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.path h3 {
  color: #2D3748;
  margin-bottom: 12px;
}

.path .duration,
.path .price {
  font-weight: 600;
  color: #4A5568;
  margin-bottom: 8px;
}

.path .price {
  font-size: 24px;
  color: #4299E1;
}

/* ========================================
   RESOURCES
   ======================================== */

.resource-categories {
  margin-bottom: 60px;
}

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

.category {
  background-color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #2D3748;
}

.category:hover {
  background-color: #4299E1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.featured-resources {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
}

.resource-card {
  background-color: #FFF5EB;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border-left: 6px solid #F6AD55;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.resource-card .format,
.resource-card .downloads {
  font-size: 14px;
  color: #4A5568;
  font-weight: 600;
  margin-bottom: 4px;
}

.resource-card .downloads {
  color: #4299E1;
}

.beginner-guides,
.cheat-sheets {
  margin-bottom: 60px;
}

.guide-list,
.cheat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide,
.cheat {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.guide:hover,
.cheat:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.guide h3,
.cheat h3 {
  color: #2D3748;
  margin-bottom: 8px;
  font-size: 18px;
}

.guide .duration {
  color: #4299E1;
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */

.contact-options {
  margin-bottom: 60px;
}

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

.contact-option {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-option h3 {
  color: #4299E1;
  margin-bottom: 16px;
}

.contact-form-section {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.form-placeholder {
  background-color: #FFF5EB;
  padding: 40px;
  border-radius: 16px;
  border: 3px dashed #F6AD55;
}

.form-placeholder ul {
  margin: 24px 0;
  padding-left: 20px;
}

.form-placeholder li {
  margin-bottom: 12px;
  color: #4A5568;
}

.form-placeholder .note {
  font-style: italic;
  color: #4A5568;
  margin: 24px 0;
}

.office-info,
.team-contacts {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

.team-contact {
  background-color: #FFF5EB;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 450px;
}

.team-contact h3 {
  color: #2D3748;
  margin-bottom: 8px;
}

.team-contact .role {
  color: #4299E1;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-content {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  text-align: left;
  color: #2D3748;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

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

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

.legal-content ul li {
  margin-bottom: 8px;
  color: #4A5568;
}

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

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

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-hero h1 {
  color: white;
  margin-bottom: 24px;
}

.thank-you-hero p {
  color: white;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 16px;
}

.next-steps {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

.step {
  background-color: #FFF5EB;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

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

.while-you-wait,
.cta-section {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF5EB 100%);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

.suggestion {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
}

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

.back-navigation {
  text-align: center;
  margin-bottom: 60px;
}

.nav-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   COMPANY STORY & EXPERTISE
   ======================================== */

.company-story {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.company-story h2 {
  text-align: left;
  margin-bottom: 24px;
}

.company-story h3 {
  color: #4299E1;
  margin-top: 32px;
  margin-bottom: 16px;
}

.company-story ul {
  padding-left: 20px;
  margin-top: 16px;
}

.company-story ul li {
  margin-bottom: 12px;
  color: #4A5568;
  line-height: 1.6;
}

.expertise {
  background: linear-gradient(135deg, #FFE5CC 0%, #FFF5EB 100%);
  border-radius: 24px;
  padding: 60px 40px;
}

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

.expertise-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 450px;
  text-align: center;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.expertise-item h3 {
  color: #4299E1;
  margin-bottom: 12px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: #2D3748;
  color: white;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

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

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

.footer-section p {
  color: #E2E8F0;
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

.copyright {
  text-align: center;
  color: #A0AEC0;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #4A5568;
  margin-bottom: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 998;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-consent.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #2D3748;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

.btn-cookie-accept {
  background-color: #38A169;
  color: white;
}

.btn-cookie-accept:hover {
  background-color: #2F855A;
}

.btn-cookie-reject {
  background-color: #E53E3E;
  color: white;
}

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

.btn-cookie-settings {
  background-color: #4A5568;
  color: white;
}

.btn-cookie-settings:hover {
  background-color: #2D3748;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFF5EB;
  border-radius: 12px;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 44px;
  height: 24px;
  cursor: pointer;
}

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-internal {
    padding: 40px 20px;
  }
  
  .hero-internal h1 {
    font-size: 32px;
  }
  
  .hero-internal p {
    font-size: 16px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .services-grid,
  .benefits-grid,
  .team-grid,
  .stats-grid,
  .contact-grid,
  .format-grid,
  .expertise-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit,
  .team-member,
  .stat,
  .contact-option,
  .format,
  .expertise-item {
    max-width: 100%;
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    width: 100%;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .value-proposition {
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .stat .number {
    font-size: 36px;
  }
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-24 {
  margin-top: 24px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

:focus {
  outline: 3px solid #4299E1;
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #4299E1;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta,
  .cta-final {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  a {
    text-decoration: underline;
  }
}