/* ====================================
   FRESH TILES - CREATIVE ARTISTIC DESIGN
   Financial Education for Children
   ==================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* CREATIVE ARTISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Comic Sans MS', cursive;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1B5E20;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: #2E7D32;
  text-shadow: 3px 3px 0 #FFE082;
}

h2 {
  font-size: 36px;
  color: #2E7D32;
}

h3 {
  font-size: 24px;
  color: #1B5E20;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #FFA726;
  transform: translateY(-2px);
}

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

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

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

/* CREATIVE BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: #FFFFFF;
  border: 3px solid #1B5E20;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: #2E7D32;
  border: 3px solid #FFA726;
}

.btn-secondary:hover {
  background: #FFA726;
  color: #FFFFFF;
  border-color: #FF8F00;
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #FFA726;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #FF8F00;
  transform: rotate(90deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #FFFFFF;
  color: #2E7D32;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
}

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

/* HEADER */
.site-header {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE082 100%);
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 5px solid #FFA726;
}

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

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

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #1B5E20;
  position: relative;
  padding: 8px 0;
  font-family: 'Fredoka', sans-serif;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #FFA726;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #FFE082 0%, #FFA726 50%, #FF8F00 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 4px 4px 0 rgba(27, 94, 32, 0.3);
  animation: slideInDown 0.8s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 16px;
  font-family: 'Fredoka', sans-serif;
}

.hero-text {
  font-size: 18px;
  color: #2D3748;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

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

/* HERO INNER (SUBPAGES) */
.hero-inner {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 226, 130, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.hero-inner p {
  color: #FFE082;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: -8px auto 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #FFA726 0%, #FFE082 100%);
  border-radius: 3px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 30px;
  position: relative;
}

.stats-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.stat-card {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
  border: 3px solid #FFA726;
  transition: all 0.3s ease;
  min-width: 200px;
}

.stat-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 6px 6px 0 rgba(46, 125, 50, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2E7D32;
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0 #FFE082;
}

/* SERVICES GRID */
.services-overview,
.services-detailed {
  background: #FFFFFF;
}

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

.service-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE082 100%);
  padding: 32px;
  border-radius: 25px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  border: 4px solid #FFA726;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

.age-range {
  display: inline-block;
  background: #2E7D32;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #1B5E20;
  font-family: 'Fredoka', sans-serif;
  margin: 16px 0;
  text-shadow: 2px 2px 0 #FFE082;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-detail {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE082 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  border: 4px solid #FFA726;
  position: relative;
}

.age-duration {
  background: #2E7D32;
  color: #FFFFFF;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
}

.key-learnings {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  margin: 20px 0;
  border-left: 5px solid #FFA726;
}

.key-learnings h4 {
  color: #2E7D32;
  margin-bottom: 12px;
}

.key-learnings ul {
  margin: 0;
  padding-left: 20px;
}

.key-learnings li {
  margin-bottom: 8px;
  color: #2D3748;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  color: #1B5E20;
  font-family: 'Fredoka', sans-serif;
  margin: 20px 0;
  text-shadow: 3px 3px 0 #FFE082;
}

.includes {
  font-style: italic;
  color: #4A5568;
  margin-bottom: 24px;
}

/* FEATURES GRID */
.features {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
  border-radius: 30px;
}

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

.feature-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 4px 4px 0 rgba(255, 167, 38, 0.3);
  border: 3px solid #2E7D32;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 6px 6px 0 rgba(255, 167, 38, 0.5);
}

.feature-card h3 {
  margin-bottom: 16px;
  color: #2E7D32;
}

/* STEPS TIMELINE */
.how-it-works {
  background: #FFFFFF;
}

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

.step {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
  border: 3px solid #FFA726;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 6px 6px 0 rgba(46, 125, 50, 0.3);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #FFA726;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.step h3 {
  margin-bottom: 12px;
  color: #2E7D32;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
  border-radius: 30px;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 5px 5px 0 rgba(255, 167, 38, 0.3);
  border: 3px solid #2E7D32;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #FFA726;
  font-family: Georgia, serif;
  opacity: 0.3;
}

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

.testimonial-author {
  color: #1B5E20;
  font-weight: 600;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #FFE082;
}

.testimonial-author strong {
  color: #2E7D32;
  display: block;
  margin-bottom: 4px;
}

.testimonial-single {
  padding: 40px 20px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 30px;
}

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

/* MISSION & STORY */
.mission,
.story,
.approach {
  background: #FFFFFF;
}

.mission-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

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

.values-list {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #FFE082 0%, #FFECB3 100%);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid #FFA726;
}

.values-list h3 {
  color: #2E7D32;
  margin-bottom: 16px;
}

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

.values-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  margin-bottom: 12px;
  color: #2D3748;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: 700;
  font-size: 20px;
}

/* TEAM GRID */
.team {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 30px;
}

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

.team-member {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
  border: 3px solid #FFA726;
  margin-bottom: 20px;
}

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

.role {
  color: #FFA726;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* IMPACT STATS */
.impact {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
  border-radius: 30px;
}

/* PARENT BENEFITS */
.parent-benefits {
  background: #FFFFFF;
}

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

.benefit-card {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
  border: 3px solid #FFA726;
  margin-bottom: 20px;
}

.benefit-card h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

/* TEACHING TIPS */
.teaching-tips {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
  border-radius: 30px;
}

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

.tip-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 4px 4px 0 rgba(255, 167, 38, 0.3);
  border: 3px solid #2E7D32;
  margin-bottom: 20px;
}

.tip-card h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

/* AGE GUIDE */
.age-guide {
  background: #FFFFFF;
}

.age-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.age-block {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid #FFA726;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
}

.age-block h3 {
  color: #2E7D32;
  margin-bottom: 16px;
  font-size: 24px;
}

.age-block p {
  margin-bottom: 12px;
}

.age-block strong {
  color: #1B5E20;
}

/* COACHING CTA */
.coaching-cta {
  background: linear-gradient(135deg, #FFA726 0%, #FF8F00 100%);
  border-radius: 30px;
  text-align: center;
  padding: 60px 40px;
}

.coaching-cta h2 {
  color: #FFFFFF;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.coaching-cta p {
  color: #2D3748;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* DOWNLOADABLE RESOURCES */
.downloadable-resources {
  background: #FFFFFF;
}

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

.resource-card {
  background: linear-gradient(135deg, #FFE082 0%, #FFECB3 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 4px 4px 0 rgba(255, 167, 38, 0.3);
  border: 3px solid #2E7D32;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.resource-meta {
  font-size: 14px;
  color: #4A5568;
  font-style: italic;
  margin: 12px 0;
}

/* GUIDES SECTION */
.guides-section {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 30px;
}

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

.guide-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
  border: 3px solid #FFA726;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-card h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

.read-time {
  font-size: 14px;
  color: #4A5568;
  font-style: italic;
  margin: 12px 0;
}

/* READING LIST */
.reading-list {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
  border-radius: 30px;
}

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

.book-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 350px;
  max-width: 450px;
  box-shadow: 4px 4px 0 rgba(255, 167, 38, 0.3);
  border: 3px solid #2E7D32;
  margin-bottom: 20px;
}

.book-card h3 {
  color: #2E7D32;
  margin-bottom: 8px;
}

.author {
  color: #4A5568;
  font-style: italic;
  margin-bottom: 12px;
  display: block;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  border-radius: 30px;
  text-align: center;
  padding: 60px 40px;
}

.newsletter h2 {
  color: #FFFFFF;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.newsletter p {
  color: #FFE082;
  font-size: 18px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 250px;
  padding: 14px 20px;
  border: 3px solid #FFFFFF;
  border-radius: 50px;
  font-size: 16px;
  min-width: 200px;
}

/* CONTACT METHODS */
.contact-methods {
  background: #FFFFFF;
}

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

.contact-card {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 360px;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
  border: 3px solid #FFA726;
  margin-bottom: 20px;
  text-align: center;
}

.contact-card h3 {
  color: #2E7D32;
  margin-bottom: 16px;
}

.contact-info {
  color: #4A5568;
  font-style: italic;
  margin-top: 12px;
}

/* CONTACT FORM */
.contact-form-section {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
  border-radius: 30px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 32px;
  border-left: 5px solid #FFA726;
}

.form-note p {
  margin: 0;
  color: #2D3748;
}

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

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

.field-group label {
  font-weight: 600;
  color: #1B5E20;
  font-size: 16px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 20px;
  border: 3px solid #2E7D32;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FFA726;
  box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* LOCATION INFO */
.location-info {
  background: #FFFFFF;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.location-details {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid #FFA726;
}

.location-details h3 {
  color: #2E7D32;
  margin-bottom: 16px;
}

/* FAQ */
.faq-contact {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
  border-radius: 30px;
}

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

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  border-left: 5px solid #2E7D32;
}

.faq-item h3 {
  color: #2E7D32;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: #2D3748;
}

/* CONFIRMATION PAGE */
.confirmation {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 30px;
  text-align: center;
}

.steps-list ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.steps-list li {
  background: #FFFFFF;
  padding: 16px 20px 16px 50px;
  margin-bottom: 12px;
  border-radius: 12px;
  position: relative;
  box-shadow: 2px 2px 0 rgba(46, 125, 50, 0.1);
}

.steps-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #2E7D32;
  font-weight: 700;
  font-size: 20px;
}

/* WHILE YOU WAIT */
.while-you-wait {
  background: #FFFFFF;
}

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

.suggestion-card {
  background: linear-gradient(135deg, #FFE082 0%, #FFECB3 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 4px 4px 0 rgba(255, 167, 38, 0.3);
  border: 3px solid #2E7D32;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

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

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

.approach-card {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.2);
  border: 3px solid #FFA726;
  margin-bottom: 20px;
}

.approach-card h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #FFFFFF;
  padding: 40px 20px;
}

.legal-content h2 {
  color: #2E7D32;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  color: #1B5E20;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.related-links {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 24px;
  border-radius: 15px;
  margin-top: 32px;
  border: 3px solid #FFA726;
}

.related-links h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

.related-links ul {
  list-style: none;
  padding: 0;
}

.related-links li {
  margin-bottom: 8px;
}

.related-links a {
  color: #2E7D32;
  font-weight: 600;
}

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

.preference-item {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 5px solid #FFA726;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #FFA726 0%, #FF8F00 100%);
  border-radius: 30px;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #FFFFFF;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}

.cta-banner p {
  color: #2D3748;
  font-size: 18px;
  margin-bottom: 32px;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(135deg, #1B5E20 0%, #0D3918 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFA726 0%, #FFE082 50%, #FFA726 100%);
}

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

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

.footer-column h3,
.footer-column h4 {
  color: #FFE082;
  margin-bottom: 16px;
  font-family: 'Fredoka', sans-serif;
}

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

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

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

.footer-nav a:hover {
  color: #FFE082;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 226, 130, 0.3);
  padding-top: 20px;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #C8E6C9;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #FFE082;
}

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 5px solid #FFA726;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #FFFFFF;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

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

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

.cookie-accept {
  background: #FFA726;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #FF8F00;
  transform: scale(1.05);
}

.cookie-reject {
  background: #FFFFFF;
  color: #2E7D32;
}

.cookie-reject:hover {
  background: #FFE082;
}

.cookie-settings {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-settings:hover {
  background: #FFFFFF;
  color: #2E7D32;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 5px solid #FFA726;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2E7D32;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border-left: 5px solid #FFA726;
}

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

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #CBD5E0;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #2E7D32;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-inner h1 {
    font-size: 32px;
  }
  
  /* Layout adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Grid adjustments */
  .stats-grid,
  .services-grid,
  .features-grid,
  .steps-timeline,
  .testimonial-grid,
  .team-grid,
  .benefits-grid,
  .tips-grid,
  .resources-grid,
  .guides-grid,
  .books-grid,
  .contact-grid,
  .suggestions-grid,
  .approach-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stat-card,
  .service-card,
  .feature-card,
  .step,
  .testimonial-card,
  .team-member,
  .benefit-card,
  .tip-card,
  .resource-card,
  .guide-card,
  .book-card,
  .contact-card,
  .suggestion-card,
  .approach-card {
    max-width: 100%;
  }
  
  /* Mission content */
  .mission-content {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Forms */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Location content */
  .location-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-inner h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .price-large {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #FFA726;
  outline-offset: 2px;
}

.btn:focus {
  outline: 3px solid #FFFFFF;
}

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

.service-card,
.feature-card,
.testimonial-card {
  animation: fadeIn 0.6s ease;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .hero-cta,
  .header-cta,
  .btn,
  .cta-banner {
    display: none;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  .site-header,
  .site-footer {
    background: #FFFFFF;
    color: #000000;
  }
}