:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --secondary: #e2b53c;
  --secondary-dark: #c9a035;
  --dark: #1a202c;
  --light: #f7fafc;
  --gray: #718096;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light);
}

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo svg {
  width: 45px;
  height: 45px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding-top: 100px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu a {
  padding: 15px 30px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
}

.mobile-menu a:hover {
  color: var(--primary);
  background: var(--light);
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* Sections */
section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.bg-light {
  background: var(--light);
}

.bg-primary {
  background: var(--primary);
  color: var(--white);
}

.bg-primary h2,
.bg-primary h3 {
  color: var(--white);
}

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex: 1 1 280px;
  max-width: 380px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card h3 {
  color: var(--primary);
}

.card p {
  color: var(--gray);
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex: 1 1 320px;
  max-width: 400px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-header {
  background: var(--primary);
  padding: 25px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-card-header svg {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.service-card-header h3 {
  color: var(--white);
  margin: 0;
}

.service-card-body {
  padding: 25px;
}

.service-card-body p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-item svg {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-content p {
  color: var(--gray);
  margin: 0;
}

/* Stats */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.stat-item {
  flex: 1 1 150px;
  max-width: 200px;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  flex: 1 1 300px;
  max-width: 500px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--secondary);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  margin-bottom: 2px;
  font-size: 1rem;
}

.testimonial-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.step-content p {
  color: var(--gray);
  margin: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Values Section */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  padding: 30px 20px;
}

.value-card svg {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.value-card h4 {
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
  background: var(--primary-light);
  padding: 80px 0;
  text-align: center;
}

.quote-text {
  font-size: 1.75rem;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.quote-author {
  color: var(--secondary);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--dark);
  margin-bottom: 30px;
  font-size: 1.15rem;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item h4 {
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-item p {
  color: var(--gray);
  margin: 0;
}

.contact-map-placeholder {
  flex: 1 1 400px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Alternating Content */
.alt-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.alt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.alt-row.reverse {
  flex-direction: row-reverse;
}

.alt-text {
  flex: 1 1 300px;
}

.alt-visual {
  flex: 1 1 300px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alt-visual svg {
  width: 150px;
  height: 150px;
}

/* Milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  padding-left: 30px;
}

.milestones::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary);
}

.milestone {
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: var(--secondary);
  border-radius: 50%;
}

.milestone-year {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.milestone p {
  color: var(--gray);
  margin: 5px 0 0;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

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

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

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--gray-light);
  opacity: 0.8;
}

.footer-col a:hover {
  color: var(--secondary);
  opacity: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-about p {
  color: var(--gray-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background: var(--secondary);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--secondary-dark);
}

.cookie-btn-reject {
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--white);
}

.cookie-btn-reject:hover {
  border-color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--secondary);
  text-decoration: underline;
}

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

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

.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
  padding: 5px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: var(--dark);
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-option {
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-light);
}

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

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

.cookie-option h4 {
  margin: 0;
  font-size: 1rem;
}

.cookie-option p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--secondary);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Legal Pages */
.legal-content {
  padding: 140px 0 80px;
}

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 25px;
}

.legal-content p,
.legal-content li {
  color: var(--gray);
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.last-updated {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.thank-you h1 {
  margin-bottom: 20px;
}

.thank-you p {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--light);
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin: 40px 0;
}

.highlight-panel h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.highlight-panel p {
  opacity: 0.9;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-item {
  flex: 1 1 250px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-check {
  width: 30px;
  height: 30px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 16px;
  height: 16px;
}

.benefit-item p {
  margin: 0;
  color: var(--dark);
}

/* Media Queries */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  .hero h1 {
    font-size: 3.5rem;
  }

  .nav-links {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  section {
    padding: 100px 0;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 280px;
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 15px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 160px 0 100px;
    min-height: 80vh;
  }

  .hero-content {
    max-width: 650px;
  }

  .cards-grid {
    flex-wrap: nowrap;
  }

  .alt-row {
    flex-wrap: nowrap;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 10px 15px;
  z-index: 10001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}