@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Colors from reference design */
  --primary-blue: #0f67e6;
  --primary-blue-hover: #0d55be;
  --primary-blue-light: rgba(15, 103, 230, 0.1);
  --primary-blue-border: rgba(15, 103, 230, 0.2);
  
  --bg-navy-dark: #03173d;
  --bg-navy-darker: #020f2b;
  --bg-light: #f5f8fc;
  --bg-white: #ffffff;
  
  --text-dark: #0a1629;
  --text-light: #ffffff;
  --text-muted: #6b7a90;
  --text-navy-muted: #8b9eb7;
  
  --border-light: #eef2f8;
  --border-navy: rgba(255, 255, 255, 0.08);
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing & Borders */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(10, 22, 41, 0.06);
  --shadow-hover: 0 20px 40px rgba(15, 103, 230, 0.12);
  --shadow-dark: 0 20px 50px rgba(2, 15, 43, 0.3);
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 90px 0;
  position: relative;
}

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

.section-navy {
  background-color: var(--bg-navy-dark);
  color: var(--text-light);
}

.section-navy h1, 
.section-navy h2, 
.section-navy h3, 
.section-navy h4 {
  color: var(--text-light);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-blue);
  margin-bottom: 16px;
  padding: 6px 14px;
  background-color: var(--primary-blue-light);
  border-radius: var(--radius-full);
}

.section-navy .section-tag {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.section-header {
  max-width: 650px;
  margin-bottom: 50px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.section-navy .section-header p {
  color: var(--text-navy-muted);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.navbar.scrolled-navy {
  padding: 16px 0;
  background: rgba(3, 23, 61, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-navy);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-navy .logo {
  color: var(--text-light);
}

.logo i {
  color: var(--primary-blue);
}

.logo span {
  color: var(--primary-blue);
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.navbar-navy .nav-links a {
  color: var(--text-navy-muted);
}

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

.navbar-navy .nav-links a:hover,
.navbar-navy .nav-links a.active {
  color: var(--text-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.navbar-navy .menu-toggle span {
  background-color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-light)!important;
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 103, 230, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--primary-blue-border);
}

.btn-secondary:hover {
  background-color: var(--primary-blue-light);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.section-navy .btn-secondary {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-navy .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--text-light);
}

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

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section (Replicating reference image arrangement) */
.hero {
  padding: 160px 0 100px;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

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

.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

/* Floating Review Snippet from image */
.hero-review-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: fit-content;
  border: 1px solid var(--border-light);
}

.hero-review-avatars {
  display: flex;
}

.hero-review-avatars img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-white);
  margin-left: -8px;
}

.hero-review-avatars img:first-child {
  margin-left: 0;
}

.hero-review-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-review-text span {
  color: var(--primary-blue);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Statistics section (Section below hero description) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-desc {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Introduction Section (Split columns) */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.split-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 16px;
}

/* Features Grid (Style.css from image) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue-border);
  box-shadow: var(--shadow-hover);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-link:hover {
  color: var(--primary-blue-hover);
}

/* Detail Section with checklist */
.checklist {
  margin-top: 30px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.checklist-item i {
  color: var(--primary-blue);
  font-size: 18px;
  margin-top: 3px;
}

.checklist-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.checklist-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Packages Grid section (Section 6) */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue-border);
}

.package-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.package-card:hover .package-img img {
  transform: scale(1.05);
}

.package-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.package-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.package-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  margin-top: auto;
}

.package-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

.package-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Three Steps Section */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: left;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Large CTA Banner section */
.cta-banner {
  background-color: var(--bg-navy-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  position: relative;
}

.cta-banner-content {
  z-index: 2;
}

.cta-banner-content h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-light);
  letter-spacing: -1px;
}

.cta-banner-content p {
  color: var(--text-navy-muted);
  font-size: 18px;
  margin-bottom: 0;
}

.cta-banner-action {
  text-align: right;
  z-index: 2;
}

/* Testimonial Section */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(15, 103, 230, 0.05);
}

.testimonial-stars {
  color: #ffb400;
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ section */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-image-wrapper {
  position: relative;
}

.faq-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.faq-image-badge h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-image-badge p {
  font-size: 13px;
  color: var(--text-muted);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.faq-item.active {
  background: var(--bg-white);
  border-color: var(--primary-blue-border);
  box-shadow: var(--shadow-subtle);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-trigger i {
  font-size: 18px;
  color: var(--primary-blue);
  transition: var(--transition);
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  padding-bottom: 20px;
}

.faq-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Booking & Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-blue);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px var(--primary-blue-light);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  padding-left: 20px;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-item i {
  width: 44px;
  height: 44px;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-detail-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Footer Section */
.footer {
  background-color: var(--bg-navy-darker);
  color: var(--text-light);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-navy);
}

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

.footer-brand {
  flex: 1 1 320px;
  max-width: 360px;
}

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--text-navy-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
}

.footer-social a:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  transform: translateY(-2px);
}

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

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-light);
}

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

.footer-col ul a {
  font-size: 14px;
  color: var(--text-navy-muted);
}

.footer-col ul a:hover {
  color: var(--text-light);
}

.footer-newsletter {
  flex: 1 1 280px;
  max-width: 320px;
}

.footer-newsletter h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--text-navy-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid var(--border-navy);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-navy-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-navy-muted);
}

.footer-bottom-links a:hover {
  color: var(--text-light);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: var(--bg-navy-dark);
  color: var(--text-light);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  z-index: 9999;
  border: 1px solid var(--border-navy);
  display: none; /* Controlled by JS */
  max-width: 1152px;
  margin: 0 auto;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 14px;
  color: var(--text-navy-muted);
  flex: 1 1 600px;
  margin: 0;
}

.cookie-inner p a {
  color: var(--text-light);
  text-decoration: underline;
}

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

/* Simple Page Headers for subpages */
.page-header {
  padding: 140px 0 80px;
  background-color: var(--bg-navy-dark);
  color: var(--text-light);
  text-align: center;
}

.page-header h1 {
  font-size: 46px;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-header p {
  color: var(--text-navy-muted);
  font-size: 16px;
}

/* Legal Page Content */
.legal-content {
  padding: 80px 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 24px;
  margin: 36px 0 16px;
}

.legal-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.legal-text ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.legal-text li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid, 
  .split-grid, 
  .faq-grid, 
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-review-badge {
    margin: 0 auto;
  }
  
  .hero-image-container img {
    height: 380px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 40px;
  }
  
  .cta-banner-action {
    text-align: center;
  }
  
  .testimonials-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .navbar {
    padding: 16px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 100px 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    align-items: flex-start;
  }
  
  .navbar-navy .nav-links {
    background: var(--bg-navy-dark);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
