/* ========================================
   STELLAR ISLE - SCANDINAVIAN CLEAN DESIGN
   Comprehensive CSS Styles
   ======================================== */

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

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

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

/* TYPOGRAPHY - Scandinavian Clean */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1E4057;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #1E4057;
}

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #1E4057;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #F5F5F5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  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;
  background: none;
  border: none;
  font-size: 32px;
  color: #1E4057;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E8B84D;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #1E4057;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8B84D;
  padding-left: 8px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

/* BUTTONS - Scandinavian Minimalist */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #1E4057;
  border-color: #1E4057;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
}

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

.btn-secondary:hover {
  background-color: #2C5F7C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.15);
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF3 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  color: #1E4057;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.trust-badge {
  margin-top: 32px;
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

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

.value-proposition,
.services-overview,
.testimonials,
.cta-banner,
.articles-section,
.topics-section,
.courses-catalog,
.courses-benefits,
.mission-section,
.values-section,
.story-section,
.local-commitment,
.contact-intro,
.contact-methods,
.office-location,
.legal-content,
.thank-you-hero,
.next-steps,
.while-you-wait,
.suggestions {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 60px 40px;
}

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

.value-proposition > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4A5568;
}

/* BENEFITS GRID - Flexbox Only */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.benefit-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #F9FAFB;
  padding: 32px 24px;
  border-radius: 6px;
  border-left: 4px solid #E8B84D;
  transition: all 0.3s ease;
}

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

.benefit-item h3 {
  font-size: 20px;
  color: #1E4057;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 15px;
  color: #4A5568;
  margin-bottom: 0;
}

/* SERVICES GRID - Flexbox Only */
.services-grid,
.courses-grid,
.topics-grid,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card,
.course-card,
.topic-card,
.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.course-card:hover,
.topic-card:hover,
.article-card:hover {
  border-color: #8B9DC3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card h3,
.course-card h3,
.topic-card h3,
.article-card h3 {
  font-size: 22px;
  color: #1E4057;
  margin-bottom: 12px;
}

.service-card p,
.course-card p,
.topic-card p,
.article-card p {
  font-size: 15px;
  color: #4A5568;
  margin-bottom: 12px;
  flex-grow: 1;
}

.service-card .price,
.course-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #2C5F7C;
  margin-top: 12px;
  margin-bottom: 0;
}

.service-card.featured,
.course-card.premium {
  border: 2px solid #E8B84D;
  background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #E8B84D;
  color: #1E4057;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.guarantee {
  font-size: 13px;
  color: #2C5F7C;
  font-style: italic;
  margin-top: 8px;
}

.article-count {
  font-size: 14px;
  color: #8B9DC3;
  font-weight: 600;
}

.key-topics {
  font-size: 13px;
  color: #718096;
  font-style: italic;
}

.meta {
  font-size: 13px;
  color: #8B9DC3;
  margin-bottom: 8px;
}

/* TESTIMONIALS - Proper Contrast */
.testimonials {
  background-color: #F5F7FA;
  padding: 60px 40px;
  border-radius: 8px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 8px;
  border-left: 4px solid #E8B84D;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

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

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

.testimonial-card .author span {
  display: block;
  font-size: 13px;
  color: #718096;
  font-weight: 400;
  margin-top: 4px;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4057 100%);
  color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #E8EEF3;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-banner .btn-primary {
  background-color: #E8B84D;
  border-color: #E8B84D;
  color: #1E4057;
}

.cta-banner .btn-primary:hover {
  background-color: #D4A43D;
  border-color: #D4A43D;
}

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

.cta-banner .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1E4057;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF3 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  color: #1E4057;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 20px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto;
}

/* INTRO TEXT */
.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
}

/* VALUES GRID - Flexbox Only */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  background-color: #F9FAFB;
  padding: 32px 24px;
  border-radius: 6px;
  border-top: 3px solid #E8B84D;
}

.value-item h3 {
  font-size: 20px;
  color: #1E4057;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 15px;
  color: #4A5568;
  margin-bottom: 0;
}

/* CONTACT METHODS - Flexbox Only */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.method-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: #8B9DC3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.method-card h3 {
  color: #1E4057;
  margin-bottom: 16px;
}

.method-card .detail {
  font-size: 16px;
  font-weight: 600;
  color: #2C5F7C;
  margin-bottom: 12px;
}

.location-info {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid #E8B84D;
  max-width: 600px;
  margin: 0 auto;
}

.location-info p {
  margin-bottom: 24px;
}

.response-time {
  background-color: #E8F4F8;
  padding: 16px 24px;
  border-radius: 6px;
  color: #2C5F7C;
  font-weight: 600;
  text-align: center;
  margin-top: 32px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid #E8E8E8;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

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

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

.legal-content strong {
  color: #1E4057;
  font-weight: 600;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF3 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content h1 {
  font-size: 56px;
  color: #1E4057;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 24px;
  color: #2C5F7C;
  margin-bottom: 24px;
  font-weight: 600;
}

.thank-you-content p {
  font-size: 18px;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* STEPS GRID - Flexbox Only */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step-item {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #E8E8E8;
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #E8B84D;
  color: #1E4057;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 16px;
}

.step-item h3 {
  font-size: 20px;
  color: #1E4057;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: #4A5568;
  margin-bottom: 0;
}

/* SUGGESTIONS GRID - Flexbox Only */
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.suggestion-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  border-color: #8B9DC3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.suggestion-card h3 {
  font-size: 24px;
  color: #1E4057;
  margin-bottom: 16px;
}

.suggestion-card p {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 24px;
}

/* FOOTER */
footer {
  background-color: #1E4057;
  color: #E8EEF3;
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

.footer-about,
.footer-links,
.footer-contact,
.footer-legal {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-about p,
.footer-contact p {
  font-size: 14px;
  color: #B8C5D0;
  line-height: 1.6;
}

footer h4 {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a,
.footer-legal a {
  display: block;
  font-size: 14px;
  color: #B8C5D0;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #E8B84D;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #2C5F7C;
  padding-top: 24px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E8E8E8;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.show {
  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 300px;
  font-size: 14px;
  color: #4A5568;
}

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

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

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #4A5568;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #4A5568;
  margin-bottom: 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-color: #CBD5E0;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: #2C5F7C;
}

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

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

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

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-header p {
    font-size: 16px;
  }

  .thank-you-content h1 {
    font-size: 40px;
  }

  /* Flexbox cards to single column */
  .benefit-item,
  .service-card,
  .course-card,
  .topic-card,
  .article-card,
  .testimonial-card,
  .value-item,
  .method-card,
  .step-item,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Section padding */
  .hero,
  .value-proposition,
  .cta-banner,
  .cta-section,
  .page-header,
  .thank-you-hero {
    padding: 40px 20px;
  }

  /* Footer stacking */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Cookie modal mobile */
  .cookie-modal-content {
    padding: 32px 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-item,
  .value-item {
    flex: 1 1 calc(50% - 16px);
  }

  .service-card,
  .course-card,
  .topic-card,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }

  .method-card,
  .step-item {
    flex: 1 1 calc(50% - 16px);
  }
}

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

.section {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

/* ACCESSIBILITY */
button:focus,
a:focus,
input:focus {
  outline: 2px solid #E8B84D;
  outline-offset: 2px;
}

/* Ensure no overlapping elements */
.container > * {
  margin-bottom: 20px;
}

.container > *:last-child {
  margin-bottom: 0;
}

/* Prevent content overlap with proper spacing */
section + section {
  margin-top: 40px;
}

/* END OF CSS */