/* ===================================
   GASSI SOFFE ACADEMY - MINIMALIST STYLE
   Design: Clean, minimal with white space
   =================================== */

/* 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.7;
  color: #2d2d2d;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

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

a:hover {
  color: #1a4468;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

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

.main-nav a:hover {
  color: #2C5F8D;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1a4468;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -2px 0 16px 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: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2d2d2d;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a:hover {
  color: #2C5F8D;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  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: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

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

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

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  padding: 80px 0;
  background-color: #fafafa;
  margin-bottom: 80px;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 20px;
  color: #5a5a5a;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid #e8e8e8;
}

.trust-indicators span {
  font-size: 15px;
  color: #6a6a6a;
  font-weight: 500;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 0 40px;
  background-color: #fafafa;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #6a6a6a;
}

.breadcrumbs a:hover {
  color: #2C5F8D;
}

/* STATS BANNER */
.stats-banner {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 80px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

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

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  color: #2C5F8D;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
}

/* SECTIONS */
.section {
  margin-bottom: 80px;
  padding: 60px 0;
}

.services-overview,
.benefits,
.testimonials {
  padding: 80px 0;
  margin-bottom: 0;
}

.section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 24px;
  color: #5a5a5a;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 0;
}

/* BENEFITS GRID */
.benefits {
  background-color: #fafafa;
}

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

.benefit-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border-left: 3px solid #2C5F8D;
}

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

.benefit-item p {
  color: #5a5a5a;
  margin: 0;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #ffffff;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 4px;
  border-left: 3px solid #F7B731;
}

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

.testimonial-card .author {
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 600;
  font-style: normal;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  padding: 80px 0;
  background-color: #2C5F8D;
  text-align: center;
  margin-bottom: 0;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #e8f0f7;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-banner .btn-primary {
  background-color: #F7B731;
  border-color: #F7B731;
  color: #1a1a1a;
}

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

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

.cta-banner .btn-secondary:hover {
  background-color: #ffffff;
  color: #2C5F8D;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.trust-element {
  margin-top: 24px;
  font-size: 14px;
  color: #e8f0f7;
}

.contact-info {
  margin-top: 24px;
  font-size: 16px;
  color: #e8f0f7;
}

/* SERVICE DETAIL */
.services-detailed {
  padding: 60px 0;
  margin-bottom: 60px;
}

.service-detail {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e8e8e8;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 16px;
}

.service-detail p {
  margin-bottom: 24px;
  line-height: 1.7;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}

.features-list li {
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
  padding: 12px 16px;
  background-color: #fafafa;
  border-left: 3px solid #2C5F8D;
  margin-bottom: 0;
}

.duration,
.price {
  font-weight: 600;
  font-size: 18px;
  color: #2C5F8D;
  margin-top: 16px;
}

/* ENROLLMENT BENEFITS */
.enrollment-benefits {
  padding: 60px 0;
  background-color: #fafafa;
  margin-bottom: 60px;
}

.benefits-list {
  max-width: 700px;
  margin: 0 auto;
}

.benefits-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 18px;
}

.benefits-list li:last-child {
  border-bottom: none;
}

/* ABOUT PAGE */
.about-story,
.values,
.stats-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

.mission-vision {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.mission,
.vision {
  flex: 1;
  min-width: 280px;
  padding: 32px;
  background-color: #fafafa;
  border-left: 3px solid #2C5F8D;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.value-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.stat-box {
  text-align: center;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 4px;
}

.stat-box h3 {
  font-size: 56px;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
}

/* WHY CHOOSE US PAGE */
.key-differentiators {
  padding: 60px 0;
  margin-bottom: 60px;
}

.differentiator {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8e8e8;
}

.differentiator:last-child {
  border-bottom: none;
}

.differentiator h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

.differentiator .proof {
  display: inline-block;
  padding: 8px 16px;
  background-color: #fafafa;
  border-left: 3px solid #F7B731;
  font-weight: 600;
  color: #2C5F8D;
  font-size: 15px;
}

.features-detailed {
  padding: 60px 0;
  background-color: #fafafa;
  margin-bottom: 60px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.feature-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

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

.guarantees {
  padding: 60px 0;
  margin-bottom: 60px;
}

.guarantee-item {
  margin-bottom: 32px;
  padding: 32px;
  background-color: #fafafa;
  border-left: 3px solid #2C5F8D;
}

.guarantee-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* CAREER COUNSELING PAGE */
.services-list {
  padding: 60px 0;
  margin-bottom: 60px;
}

.service-item {
  margin-bottom: 40px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-details {
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 600;
  margin-top: 16px;
}

.process-steps {
  padding: 60px 0;
  background-color: #fafafa;
  margin-bottom: 60px;
}

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

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 4px;
  text-align: center;
  position: relative;
}

.step-number {
  display: block;
  width: 48px;
  height: 48px;
  background-color: #2C5F8D;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  margin: 0 auto 16px;
}

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

.step-item p {
  font-size: 15px;
  color: #5a5a5a;
  margin: 0;
}

/* CONTACT PAGE */
.contact-info-cards {
  padding: 60px 0;
  margin-bottom: 60px;
}

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

.contact-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 4px;
  border-left: 3px solid #2C5F8D;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.contact-card p {
  margin-bottom: 8px;
  color: #2d2d2d;
}

.contact-card .note {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 12px;
}

.contact-form-section {
  padding: 60px 0;
  background-color: #fafafa;
  margin-bottom: 60px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.form-placeholder p {
  margin-bottom: 16px;
  padding: 12px;
  background-color: #fafafa;
  border-radius: 4px;
  color: #5a5a5a;
}

.form-placeholder strong {
  color: #1a1a1a;
}

.directions {
  padding: 60px 0;
  margin-bottom: 60px;
}

.directions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.direction-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  padding: 24px;
  background-color: #fafafa;
  border-radius: 4px;
}

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

.phone-large {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 16px;
}

/* LEGAL PAGES */
.legal-page-hero {
  padding: 60px 0 40px;
  background-color: #fafafa;
  margin-bottom: 60px;
}

.last-updated {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

.legal-content {
  padding: 40px 0 80px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

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

.legal-section ul,
.legal-section ol {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-section li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 0;
  text-align: center;
  background-color: #fafafa;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #ffffff;
  border-radius: 50%;
  font-size: 48px;
  line-height: 80px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.thank-you-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.thank-you-hero p {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 16px;
}

.timeline {
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 24px;
}

.next-steps,
.while-waiting {
  padding: 60px 0;
  margin-bottom: 40px;
}

.steps-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.step-box,
.action-box {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 4px;
  text-align: center;
}

.step-box h3,
.action-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.step-box p,
.action-box p {
  margin-bottom: 16px;
  color: #5a5a5a;
}

.urgent-contact {
  padding: 60px 0;
  background-color: #2C5F8D;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

.urgent-contact h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.urgent-contact p {
  color: #e8f0f7;
  margin-bottom: 16px;
}

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

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

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

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

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

.footer-section p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

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

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent-banner.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;
  min-width: 280px;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #2C5F8D;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #1a4468;
}

.cookie-reject {
  background-color: #e8e8e8;
  color: #2d2d2d;
}

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

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

.cookie-settings:hover {
  background-color: #2C5F8D;
  color: #ffffff;
}

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

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

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

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #fafafa;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #d8d8d8;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2C5F8D;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-category p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #5a5a5a;
}

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

.cookie-modal-buttons button {
  flex: 1;
  min-width: 140px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  /* Services */
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    min-width: 100%;
  }
  
  /* Benefits */
  .benefits-grid,
  .features-grid,
  .values-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .feature-item,
  .value-item {
    min-width: 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  /* Mission/Vision */
  .mission-vision {
    flex-direction: column;
  }
  
  .mission,
  .vision {
    min-width: 100%;
  }
  
  /* Steps */
  .steps-grid {
    flex-direction: column;
  }
  
  .step-item {
    min-width: 100%;
  }
  
  /* Contact */
  .contact-grid,
  .directions-grid {
    flex-direction: column;
  }
  
  .contact-card,
  .direction-item {
    min-width: 100%;
  }
  
  /* Thank you */
  .steps-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .step-box,
  .action-box {
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Features list */
  .features-list {
    flex-direction: column;
  }
  
  .features-list li {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  /* Hero */
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  /* Cards */
  .service-card,
  .benefit-item,
  .testimonial-card,
  .feature-item,
  .contact-card {
    padding: 24px;
  }
  
  /* Stats */
  .stat-item h3,
  .stat-box h3 {
    font-size: 36px;
  }
  
  /* Phone */
  .phone-large {
    font-size: 24px;
  }
  
  /* Success icon */
  .success-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
    line-height: 64px;
  }
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

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

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION COLOR */
::selection {
  background-color: #2C5F8D;
  color: #ffffff;
}

::-moz-selection {
  background-color: #2C5F8D;
  color: #ffffff;
}

/* FOCUS STATES */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2C5F8D;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none !important;
  }
}

/* ACCESSIBILITY */
.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;
}

/* PREVENT LAYOUT SHIFT */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ENSURE PROPER SPACING */
.service-card,
.benefit-item,
.testimonial-card,
.feature-item,
.value-item,
.contact-card,
.step-box,
.action-box {
  position: relative;
  margin-bottom: 20px;
}

/* FLEXBOX SPACING */
.services-grid,
.benefits-grid,
.testimonials-grid,
.features-grid,
.values-grid,
.contact-grid,
.steps-grid,
.actions-grid,
.stats-grid {
  gap: 24px;
}

/* PREVENT OVERLAP */
.section,
.services-overview,
.benefits,
.testimonials,
.about-story,
.values,
.services-list,
.contact-info-cards {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ENSURE READABLE TEXT IN ALL SECTIONS */
.testimonial-card p,
.benefit-item p,
.feature-item p,
.service-card p {
  color: #2d2d2d;
  line-height: 1.7;
}

/* PROPER CARD SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* CONTENT ALIGNMENT */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ENSURE NO GRID USAGE */
/* All layouts use flexbox only - NO CSS GRID */
/* display: grid is FORBIDDEN */
/* grid-template-columns is FORBIDDEN */
/* column-count is FORBIDDEN */