/* CSS Reset and Base Styles */
* {
  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: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

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

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

a:hover {
  color: #F0A500;
}

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #1a3a5c;
}

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

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #1a3a5c;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  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: transparent;
  border: none;
  font-size: 32px;
  color: #1a3a5c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 8px;
}

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

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

/* Header Styles */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

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

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

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

.main-nav a {
  color: #1a3a5c;
  font-weight: 500;
  font-size: 16px;
  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: #F0A500;
  transition: width 0.3s ease;
}

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

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

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

.btn-primary {
  background: #2E5C8A;
  color: #ffffff;
  border-color: #2E5C8A;
}

.btn-primary:hover {
  background: #1a3a5c;
  border-color: #1a3a5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 92, 138, 0.3);
}

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

.btn-secondary:hover {
  background: #2E5C8A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 92, 138, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(46, 92, 138, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

.hero-subheading {
  font-size: 20px;
  color: #555555;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  color: #666666;
  font-size: 14px;
  margin-top: 16px;
}

.breadcrumb {
  color: #888888;
  font-size: 14px;
  margin-top: 24px;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

/* Two Column Layout */
.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.problem, .solution {
  flex: 1;
  min-width: 280px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
}

.problem h3, .solution h3 {
  color: #1a3a5c;
  margin-bottom: 16px;
}

/* Grid Layouts with Flexbox */
.stats-grid,
.service-grid,
.benefit-grid,
.pricing-grid,
.package-grid,
.cert-grid,
.tools-grid,
.option-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

/* Stat Cards */
.stat-card {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card h4 {
  font-size: 48px;
  color: #F0A500;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 0;
}

/* Service Cards */
.service-card,
.benefit-card,
.mission-card,
.principle-card,
.cert-card,
.tool-card,
.option-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.benefit-card:hover,
.mission-card:hover,
.principle-card:hover,
.cert-card:hover,
.tool-card:hover,
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img,
.option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.service-card h3 {
  color: #1a3a5c;
  font-size: 20px;
  margin-bottom: 12px;
}

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

.service-card .price {
  color: #F0A500;
  font-weight: 600;
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Testimonial Section */
.testimonials {
  background: #f8f9fa;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p:first-child {
  font-style: italic;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 0;
}

.testimonial-author {
  color: #1a3a5c;
  font-size: 14px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #1a3a5c;
}

/* Feature Lists */
.features-list {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.features-list h3 {
  color: #1a3a5c;
  margin-bottom: 16px;
}

.features-list ul {
  margin-bottom: 0;
}

.features-list li {
  color: #333333;
  padding-left: 8px;
}

/* Pricing Cards */
.pricing-card,
.package-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pricing-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
  border: 3px solid #F0A500;
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #F0A500;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-card h3,
.package-card h3 {
  color: #1a3a5c;
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-card .price,
.package-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #2E5C8A;
  margin-bottom: 8px;
}

.savings {
  color: #F0A500;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.ideal-for {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

.pricing-card ul,
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-card li,
.package-card li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333333;
}

.pricing-card li:last-child,
.package-card li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

/* Mission and Values */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.values-grid {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  margin-top: 48px;
}

.values-grid h3 {
  color: #1a3a5c;
  text-align: center;
  margin-bottom: 32px;
}

.values-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.values-grid li {
  background: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  color: #2E5C8A;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* Achievement Metrics */
.achievement-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

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

.metric h4 {
  font-size: 48px;
  color: #F0A500;
  margin-bottom: 8px;
}

.metric p {
  color: #555555;
  font-size: 16px;
  margin-bottom: 0;
}

/* Resource Cards */
.resource-grid,
.guide-list,
.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.resource-card,
.guide-item,
.case-study-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card:hover,
.guide-item:hover,
.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.difficulty {
  display: inline-block;
  padding: 4px 12px;
  background: #F0A500;
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.metrics {
  color: #2E5C8A;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #2E5C8A 0%, #1a3a5c 100%);
  color: #ffffff;
  text-align: center;
}

.newsletter h2 {
  color: #ffffff;
}

.newsletter p {
  color: #ffffff;
}

.newsletter-form {
  max-width: 500px;
  margin: 32px auto 0;
}

/* Contact Method */
.contact-method {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

/* Office Details */
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.detail-block {
  flex: 1;
  min-width: 250px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
}

.detail-block h3 {
  color: #1a3a5c;
  margin-bottom: 16px;
}

/* Resource Links */
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.resource-links a {
  padding: 12px 24px;
  background: #f8f9fa;
  color: #2E5C8A;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.resource-links a:hover {
  background: #2E5C8A;
  color: #ffffff;
}

/* Form Placeholder */
.form-placeholder {
  background: #f8f9fa;
  padding: 48px;
  border-radius: 12px;
  text-align: center;
  border: 2px dashed #cccccc;
}

/* Success Icon */
.success-icon {
  width: 80px;
  height: 80px;
  background: #F0A500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 24px;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step-card {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.confirmation-note {
  text-align: center;
  color: #666666;
  font-style: italic;
  margin-top: 32px;
}

/* Link List */
.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.link-list a {
  color: #2E5C8A;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.link-list a:hover {
  color: #F0A500;
  padding-left: 8px;
}

/* Policy Content */
.policy-content {
  background: #ffffff;
}

.policy-content h2 {
  color: #1a3a5c;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid #f0f0f0;
}

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

.last-updated,
.effective-date {
  color: #888888;
  font-size: 14px;
  font-style: italic;
}

.philosophy {
  font-size: 18px;
  color: #555555;
  margin-bottom: 32px;
}

/* Discount List */
.discount-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.discount-item {
  flex: 1;
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.discount-item h3 {
  color: #1a3a5c;
  margin-bottom: 12px;
}

.discount-item p {
  color: #F0A500;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

/* Trust Indicators */
.trust-indicators {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin-top: 16px;
}

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

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

/* CTA Sections */
.cta,
.cta-final {
  background: linear-gradient(135deg, #2E5C8A 0%, #1a3a5c 100%);
  color: #ffffff;
  text-align: center;
}

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

.cta p,
.cta-final p {
  color: #ffffff;
  font-size: 18px;
}

.cta-subtext {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* Footer Styles */
footer {
  background: #1a3a5c;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #F0A500;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3a5c;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1;
  min-width: 250px;
}

.cookie-consent-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 14px;
}

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

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

.cookie-btn-accept {
  background: #F0A500;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #d89400;
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #F0A500;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1a3a5c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  color: #1a3a5c;
  margin-bottom: 24px;
}

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

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

.cookie-category h3 {
  color: #1a3a5c;
  font-size: 18px;
  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: #cccccc;
  border-radius: 26px;
  transition: 0.3s;
}

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

input:checked + .cookie-slider {
  background: #F0A500;
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 0;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu elements */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  header .cta-buttons {
    display: none;
  }
  
  /* Adjust header */
  header .container {
    padding: 16px 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Typography scaling */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheading {
    font-size: 16px;
  }
  
  /* Section spacing */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Flex items full width on mobile */
  .two-column > *,
  .stats-grid > *,
  .service-grid > *,
  .benefit-grid > *,
  .testimonial-grid > *,
  .pricing-grid > *,
  .package-grid > *,
  .mission-grid > *,
  .process-steps > *,
  .achievement-metrics > *,
  .resource-grid > *,
  .guide-list > *,
  .case-study-grid > *,
  .tools-grid > *,
  .option-grid > *,
  .contact-grid > *,
  .office-details > *,
  .discount-list > * {
    min-width: 100%;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer adjustments */
  .footer-content {
    gap: 32px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
  
  /* Modal padding */
  .cookie-modal-content {
    padding: 32px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .main-nav {
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 14px;
  }
  
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Grid items - 2 columns */
  .service-grid > *,
  .benefit-grid > *,
  .pricing-grid > *,
  .tools-grid > * {
    min-width: calc(50% - 12px);
  }
}

@media (min-width: 1025px) {
  /* Desktop - optimal spacing */
  .service-grid > * {
    min-width: calc(33.333% - 16px);
  }
  
  .pricing-grid > * {
    min-width: calc(33.333% - 16px);
  }
}

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

.hero-content {
  animation: fadeIn 0.8s ease-out;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-buttons,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  section {
    page-break-inside: avoid;
  }
}