/* ========================================
   NeoValon CSS - 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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  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: #1a202c;
  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: #4a5568;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

li {
  margin-bottom: 8px;
  color: #4a5568;
}

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

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

/* Header */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #1B4B7F;
  border-bottom-color: #1B4B7F;
}

.header-cta {
  display: flex;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background-color: #1B4B7F;
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C7CB0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
  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: #4a5568;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

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

.mobile-nav a {
  color: #2d3748;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #1B4B7F;
  color: #ffffff;
  border-color: #1B4B7F;
}

.btn-primary:hover {
  background-color: #2C7CB0;
  border-color: #2C7CB0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 75, 127, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1B4B7F;
  border-color: #1B4B7F;
}

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

/* Hero Section */
.hero {
  padding: 80px 20px;
  background-color: #f7fafc;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
  color: #1a202c;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

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

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

.trust-indicators span {
  color: #718096;
  font-size: 14px;
  padding: 8px 16px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1a202c;
}

/* Card Grids - Using Flexbox */
.benefits-grid,
.features-grid,
.services-grid,
.stats-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.cert-grid,
.pricing-grid,
.metrics-grid,
.contact-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

/* Benefit Cards */
.benefit-card,
.feature-card,
.service-card,
.stat-card,
.testimonial-card,
.value-card,
.team-member,
.pricing-card,
.metric-card,
.contact-method,
.resource-card,
.step-card {
  flex: 1 1 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover,
.feature-card:hover,
.service-card:hover,
.value-card:hover,
.pricing-card:hover {
  border-color: #1B4B7F;
  box-shadow: 0 8px 24px rgba(27, 75, 127, 0.1);
  transform: translateY(-4px);
}

.benefit-card h3,
.feature-card h3,
.service-card h3,
.value-card h3,
.step-card h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

/* Service Cards */
.service-detail-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.service-features span {
  padding: 8px 16px;
  background-color: #f7fafc;
  border-radius: 4px;
  font-size: 14px;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #1B4B7F;
}

.ideal-for {
  color: #718096;
  font-size: 14px;
}

/* Stats Cards */
.stat-card,
.metric-card {
  text-align: center;
  flex: 1 1 200px;
}

.stat-value,
.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: #1B4B7F;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label,
.metric-label {
  color: #718096;
  font-size: 14px;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: #f7fafc;
  border: 1px solid #e2e8f0;
}

.testimonial-card p {
  color: #2d3748;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
}

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

/* Pricing Cards */
.pricing-card {
  position: relative;
  text-align: center;
}

.pricing-card.featured {
  border-color: #F0B429;
  border-width: 2px;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F0B429;
  color: #1a202c;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card .price {
  font-size: 48px;
  margin: 24px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: #718096;
  font-weight: 400;
}

.pricing-card .description {
  color: #718096;
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.features-list li:before {
  content: "✓";
  color: #1B4B7F;
  font-weight: bold;
  margin-right: 12px;
}

/* Team Cards */
.team-member {
  text-align: center;
}

.team-member h3 {
  color: #1a202c;
  margin-bottom: 8px;
}

.team-member .role {
  color: #1B4B7F;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Trust Badges */
.trust-badges,
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.badge,
.cert-badge {
  padding: 16px 24px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #2d3748;
  text-align: center;
}

/* Technology Stack */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.tech-item {
  padding: 16px 24px;
  background-color: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 14px;
  color: #4a5568;
}

/* Comparison Section */
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}

.comparison-item .traditional,
.comparison-item .neovalon {
  flex: 1;
  text-align: center;
  padding: 12px;
}

.comparison-item .traditional {
  color: #718096;
}

.comparison-item .neovalon {
  color: #1B4B7F;
  font-weight: 600;
}

/* Fee Structure */
.fee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.fee-item {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #f7fafc;
  padding: 24px;
  border-radius: 4px;
  text-align: center;
}

.fee-item h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
  font-size: 18px;
}

/* Allocation List */
.allocation-list {
  max-width: 600px;
  margin: 0 auto;
}

.allocation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.allocation-item .asset-name {
  color: #2d3748;
  font-weight: 500;
}

.allocation-item .asset-percentage {
  color: #1B4B7F;
  font-weight: 700;
  font-size: 18px;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}

.stat-item .stat-label {
  color: #718096;
  font-size: 14px;
  text-align: center;
}

.stat-item .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #1B4B7F;
  margin-bottom: 8px;
}

/* Contact Section */
.contact-method {
  text-align: center;
}

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

.contact-method h3 {
  color: #1a202c;
  margin-bottom: 12px;
}

.contact-method .availability {
  color: #718096;
  font-size: 14px;
  margin-top: 8px;
}

/* Form Styles */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1B4B7F;
  box-shadow: 0 0 0 3px rgba(27, 75, 127, 0.1);
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-field input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-field label {
  margin: 0;
  font-weight: 400;
}

.privacy-note {
  font-size: 12px;
  color: #718096;
  margin-top: 16px;
}

/* Legal Pages */
.legal-hero {
  padding: 60px 20px;
  background-color: #f7fafc;
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.last-updated {
  color: #718096;
  font-size: 14px;
  margin-bottom: 16px;
}

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

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1B4B7F;
}

.legal-content h3 {
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-links {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.legal-links h3 {
  margin-bottom: 16px;
}

.legal-links a {
  display: block;
  padding: 12px 0;
  color: #1B4B7F;
  border-bottom: 1px solid #e2e8f0;
}

.legal-links a:hover {
  padding-left: 8px;
}

/* Risk Warning */
.risk-warning {
  background-color: #fff5f5;
  border: 2px solid #fc8181;
}

.warning-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #fc8181;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.warning-text {
  color: #c53030;
  font-weight: 600;
  font-size: 18px;
}

.warning {
  color: #c53030;
  font-weight: 600;
  padding: 16px;
  background-color: #fff5f5;
  border-left: 4px solid #fc8181;
  margin-bottom: 24px;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

/* 404 Page */
.error-hero {
  padding: 80px 20px;
  text-align: center;
}

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

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

.page-link {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #1B4B7F;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-link:hover {
  background-color: #1B4B7F;
  color: white;
  transform: translateY(-2px);
}

/* Office Info */
.office-details p {
  margin-bottom: 24px;
}

.office-details strong {
  display: block;
  color: #1a202c;
  margin-bottom: 8px;
}

/* Team Contacts */
.team-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-person {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 24px;
  background-color: #f7fafc;
  border-radius: 4px;
  text-align: center;
}

.contact-person h3 {
  color: #1a202c;
  margin-bottom: 8px;
}

.contact-person .role {
  color: #1B4B7F;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-person .email {
  color: #4a5568;
  font-size: 14px;
}

/* Mission/Vision */
.mission-vision {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.text-block {
  flex: 1 1 300px;
  padding: 32px;
  background-color: #f7fafc;
  border-radius: 4px;
  border-left: 4px solid #1B4B7F;
}

.text-block h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

/* Cookie Manager */
.cookie-manager {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px;
  background-color: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-toggle:last-child {
  border-bottom: none;
}

.cookie-toggle label {
  font-weight: 500;
  color: #2d3748;
}

.toggle-status {
  color: #718096;
  font-size: 14px;
}

/* Commitment List */
.commitment-list {
  list-style: none;
  margin: 32px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-list li {
  padding: 16px 16px 16px 40px;
  position: relative;
  background-color: #f7fafc;
  margin-bottom: 12px;
  border-radius: 4px;
}

.commitment-list li:before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: #48bb78;
  font-weight: bold;
}

/* Note */
.note {
  color: #718096;
  font-size: 14px;
  text-align: center;
  margin-top: 24px;
  font-style: italic;
}

/* Disclaimer */
.disclaimer {
  color: #718096;
  font-size: 12px;
  text-align: center;
  margin-top: 24px;
}

/* Footer */
footer {
  background-color: #1a202c;
  color: #cbd5e0;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

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

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

.footer-col p {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: #cbd5e0;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
  padding-left: 8px;
}

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

.footer-bottom p {
  color: #cbd5e0;
  font-size: 12px;
  margin-bottom: 8px;
}

.regulatory {
  color: #a0aec0;
  font-size: 11px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.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 1 400px;
  font-size: 14px;
  color: #4a5568;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #1B4B7F;
  color: white;
  border-color: #1B4B7F;
}

.cookie-accept:hover {
  background-color: #2C7CB0;
}

.cookie-reject {
  background-color: transparent;
  color: #4a5568;
  border-color: #e2e8f0;
}

.cookie-reject:hover {
  border-color: #cbd5e0;
}

.cookie-settings {
  background-color: transparent;
  color: #1B4B7F;
  border-color: #1B4B7F;
}

.cookie-settings:hover {
  background-color: #f7fafc;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  color: #1a202c;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #4a5568;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

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

.cookie-category h4 {
  color: #2d3748;
  margin: 0;
  font-size: 16px;
}

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

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

.cookie-toggle-switch.active {
  background-color: #1B4B7F;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  section {
    padding: 40px 20px;
  }

  .benefit-card,
  .feature-card,
  .service-card,
  .stat-card,
  .testimonial-card,
  .value-card,
  .team-member,
  .pricing-card,
  .metric-card,
  .contact-method,
  .resource-card,
  .step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .stat-value,
  .metric-value {
    font-size: 36px;
  }

  .error-code {
    font-size: 80px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    min-width: 100%;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-consent-buttons button {
    flex: 1;
  }

  .comparison-item {
    flex-direction: column;
    gap: 12px;
  }

  .mission-vision {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .benefit-card,
  .feature-card,
  .service-card,
  .value-card,
  .step-card {
    padding: 24px;
  }

  .service-detail-card {
    padding: 24px;
  }

  .cookie-modal-content {
    padding: 24px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.mb-32 {
  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;
}

/* Smooth Scrolling */
html {
  scroll-padding-top: 80px;
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid #1B4B7F;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #1B4B7F;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  a {
    text-decoration: underline;
  }
}