/* ===================================
   GlossIQ Team - Complete CSS Styles
   Minimalist Design Style
   =================================== */

/* ===================================
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  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: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 600;
  color: #2D5016;
}

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: #FFFFFF;
  border-bottom: 1px solid #F4E5D3;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.main-nav a {
  color: #2D5016;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

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

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

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

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: #2D5016;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.mobile-nav a {
  color: #2D5016;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: #F4E5D3;
  border-left-color: #7BA05B;
  padding-left: 20px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #2D5016;
  color: #FFFFFF;
  border-color: #2D5016;
}

.btn-primary:hover {
  background: #7BA05B;
  border-color: #7BA05B;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(45, 80, 22, 0.2);
}

.btn-secondary {
  background: #F4E5D3;
  color: #2D5016;
  border-color: #2D5016;
}

.btn-secondary:hover {
  background: #2D5016;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(45, 80, 22, 0.2);
}

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, #F4E5D3 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(123, 160, 91, 0.1);
  border-radius: 50%;
  z-index: 0;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #2D5016;
}

.hero p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.trust-badges span {
  color: #2D5016;
  font-size: 14px;
  font-weight: 500;
}

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

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

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

/* ===================================
   SERVICE CARDS & GRIDS
   =================================== */

.services-grid,
.courses-grid,
.benefits-grid,
.posts-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.course-card,
.benefit,
.post-card,
.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid #F4E5D3;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.course-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(45, 80, 22, 0.15);
  border-color: #7BA05B;
}

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

.service-card p,
.course-card p {
  color: #333333;
  flex-grow: 1;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #2D5016;
  margin: 16px 0;
}

.service-card .btn,
.course-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Course Specific */
.course-card ul {
  list-style: none;
  margin: 16px 0;
}

.course-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #333333;
}

.course-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA05B;
  font-weight: 700;
}

.course-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.level,
.duration {
  padding: 6px 12px;
  background: #F4E5D3;
  border-radius: 20px;
  font-size: 14px;
  color: #2D5016;
  font-weight: 500;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #7BA05B;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

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

.benefits {
  background: #F4E5D3;
  padding: 60px 20px;
}

.benefit {
  text-align: center;
  background: #FFFFFF;
  padding: 32px;
  min-width: 240px;
}

.benefit h3 {
  margin-bottom: 12px;
}

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

.testimonials {
  background: #FFFFFF;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #F4E5D3;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #7BA05B;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  color: #333333;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-author strong {
  color: #2D5016;
  font-size: 16px;
}

.testimonial-author span {
  color: #666666;
  font-size: 14px;
}

.social-proof {
  text-align: center;
  font-weight: 600;
  color: #2D5016;
  font-size: 18px;
}

/* ===================================
   BUNDLES & PACKAGES
   =================================== */

.bundles-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.bundle-card,
.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border: 2px solid #F4E5D3;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bundle-card.featured,
.package-card.featured {
  border-color: #7BA05B;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.bundle-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.2);
}

.bundle-price,
.price-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999999;
  font-size: 18px;
}

.new-price {
  font-size: 36px;
  font-weight: 700;
  color: #2D5016;
}

.saving,
.save {
  color: #7BA05B;
  font-weight: 600;
  font-size: 14px;
}

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

/* ===================================
   PROCESS STEPS
   =================================== */

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: #7BA05B;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: #333333;
}

/* ===================================
   BLOG STYLES
   =================================== */

.blog-categories {
  margin-bottom: 40px;
}

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

.category {
  padding: 10px 24px;
  background: #F4E5D3;
  border-radius: 24px;
  color: #2D5016;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category:hover,
.category.active {
  background: #7BA05B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.post-card {
  text-align: left;
}

.post-category {
  display: inline-block;
  padding: 6px 16px;
  background: #7BA05B;
  color: #FFFFFF;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  gap: 16px;
  color: #666666;
  font-size: 14px;
  margin-top: 16px;
}

.read-more {
  color: #7BA05B;
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #2D5016;
  transform: translateX(4px);
}

/* ===================================
   NEWSLETTER
   =================================== */

.newsletter {
  background: #F4E5D3;
  padding: 60px 20px;
  text-align: center;
}

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

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  font-size: 16px;
  background: #FFFFFF;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #7BA05B;
}

.privacy-note {
  font-size: 14px;
  color: #333333;
}

/* ===================================
   CONTACT FORM
   =================================== */

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

.options-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.option-card,
.info-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #F4E5D3;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

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

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

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #2D5016;
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #F4E5D3;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #7BA05B;
}

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

.form-field.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  margin-bottom: 0;
}

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

.legal-hero {
  padding: 60px 20px;
  text-align: center;
}

.last-updated {
  color: #666666;
  font-size: 14px;
}

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

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

.content-wrapper h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.content-wrapper h3 {
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.quick-links,
.quick-contact,
.highlights,
.action-buttons,
.cookie-categories {
  background: #F4E5D3;
  padding: 32px;
  border-radius: 12px;
  margin-top: 40px;
}

.quick-links a,
.quick-contact a {
  display: block;
  padding: 12px 0;
  color: #2D5016;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-links a:hover,
.quick-contact a:hover {
  color: #7BA05B;
  padding-left: 8px;
}

.highlights ul {
  list-style: none;
  margin: 16px 0;
}

.highlights ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.highlights ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA05B;
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.response-time {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin-top: 16px;
}

.category {
  margin-bottom: 24px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
  border-left: 4px solid #7BA05B;
}

.category h4 {
  margin-bottom: 8px;
}

/* ===================================
   MISSION & VALUES
   =================================== */

.mission-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.mission-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #F4E5D3;
  padding: 32px;
  border-radius: 12px;
}

.value {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #F4E5D3;
}

.value strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

/* ===================================
   STORY & MILESTONES
   =================================== */

.story {
  background: #FFFFFF;
  padding: 60px 20px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #F4E5D3;
  border-radius: 12px;
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: #2D5016;
  margin-bottom: 8px;
}

/* ===================================
   IMPACT STATS
   =================================== */

.impact {
  background: #F4E5D3;
  padding: 60px 20px;
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.stat {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #7BA05B;
  margin-bottom: 16px;
}

.stat p {
  color: #333333;
  font-size: 16px;
}

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

.cta-final {
  background: linear-gradient(135deg, #7BA05B 0%, #2D5016 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
}

.cta-final h2,
.cta-final p {
  color: #FFFFFF;
}

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

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

.guarantee {
  font-size: 14px;
  margin-top: 24px;
  color: #F4E5D3;
}

/* ===================================
   404 PAGE
   =================================== */

.hero-404 {
  text-align: center;
  padding: 100px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #7BA05B;
  line-height: 1;
  margin-bottom: 24px;
}

.helpful-links,
.contact-help {
  padding: 60px 20px;
}

.contact-help {
  background: #F4E5D3;
  text-align: center;
}

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

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #7BA05B;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation,
.while-waiting,
.free-resource {
  padding: 40px 20px;
}

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

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  border: 1px solid #F4E5D3;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

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

footer {
  background: #2D5016;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-column p {
  color: #F4E5D3;
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-column a {
  display: block;
  color: #F4E5D3;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 229, 211, 0.2);
  color: #F4E5D3;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2D5016;
  color: #FFFFFF;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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: #F4E5D3;
  margin-bottom: 0;
}

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

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

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 2001;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cookie-settings-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-overlay.active {
  opacity: 1;
  pointer-events: all;
}

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

.cookie-category h4 {
  margin-bottom: 8px;
  color: #2D5016;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cards & Grids */
  .services-grid,
  .courses-grid,
  .benefits-grid,
  .posts-grid,
  .links-grid,
  .bundles-grid,
  .packages-grid,
  .testimonials-grid,
  .options-grid,
  .info-grid,
  .mission-grid,
  .values-grid,
  .milestones,
  .impact-stats,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .course-card,
  .benefit,
  .post-card,
  .link-card,
  .bundle-card,
  .package-card,
  .testimonial-card,
  .option-card,
  .info-item,
  .mission-item,
  .value,
  .milestone,
  .stat,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .bundle-card.featured,
  .package-card.featured {
    transform: scale(1);
  }
  
  /* Steps */
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    flex: 1 1 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* 404 Error */
  .error-code {
    font-size: 80px;
  }
  
  /* Section Padding */
  section {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero {
    padding: 40px 16px;
  }
  
  section {
    padding: 24px 16px;
  }
  
  .service-card,
  .course-card,
  .testimonial-card {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .error-code {
    font-size: 60px;
  }
}

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

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

.service-card,
.course-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease;
}

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

:focus {
  outline: 2px solid #7BA05B;
  outline-offset: 2px;
}

.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #7BA05B;
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

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

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

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ===================================
   END OF STYLESHEET
   =================================== */