﻿:root {
  --primary: #1E3A8A;
  --primary-hover: #172554;
  --secondary: #0D9488;
  --secondary-hover: #0F766E;
  --accent: #38BDF8;
  --dark: #0F172A;
  --dark-light: #1E293B;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --text-main: #334155;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--light);
}

body {
  line-height: 1.6;
  font-size: 16px;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 50px;
  width: 220px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-light);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-cta {
  background-color: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  color: var(--white);
  padding: 100px 20px 80px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

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

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.hero-trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

.trust-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94A3B8;
  margin-bottom: 15px;
  font-weight: 700;
}

.trust-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #E2E8F0;
  font-weight: 500;
}

.badge-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

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

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-decoration {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Global Content Setup */
section {
  padding: 90px 20px;
}

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

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

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

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

/* Features / Services Section */
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.3);
}

.feature-img-container {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

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

.feature-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-link {
  margin-top: auto;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* Value Propositions Section */
.value-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 35px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 58, 138, 0.2);
}

.value-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* How It Works Section */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

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

/* Social Proof (Testimonials) */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

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

.user-meta h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.user-meta p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* About Us Section */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--dark-light);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-legal-highlight {
  background-color: var(--light);
  padding: 20px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--dark-light);
  font-weight: 500;
}

/* Lead Gen Form Section */
.form-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--white);
  padding: 90px 20px;
}

.form-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.form-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
}

.form-text p {
  font-size: 16px;
  color: #94A3B8;
  margin-bottom: 30px;
}

.form-guarantees {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #E2E8F0;
}

.guarantee-item svg {
  color: var(--secondary);
}

.form-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: var(--dark);
  position: relative;
}

.form-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-card .subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-light);
}

.form-group input, 
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}

.phone-wrapper {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--white);
  transition: var(--transition);
}

.phone-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}

.phone-prefix {
  background-color: var(--light);
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-light);
  border-right: 1px solid var(--border);
  user-select: none;
}

.phone-wrapper input {
  border: none !important;
  flex-grow: 1;
  box-shadow: none !important;
}

.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.form-checkbox label {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.4;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.btn-submit {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 10;
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-overlay svg {
  color: var(--secondary);
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.success-overlay h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

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

/* Accordion FAQs */
.faqs-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

details {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

details[open] {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: var(--shadow-md);
}

summary {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition: var(--transition);
}

details[open] summary::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer Style */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 80px 20px 40px;
  border-top: 4px solid var(--secondary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 50px;
  width: 220px;
}

.footer-brand p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}

.footer-brand .legal-entity-details {
  font-size: 12px;
  color: #64748B;
  margin-top: 10px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  text-decoration: none;
  color: #94A3B8;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 8px;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-contact p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748B;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: #94A3B8;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  background-color: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 20px 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  bottom: 20px;
}

.cookie-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}

.btn-cookie-accept {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-cookie-decline {
  background-color: var(--light);
  color: var(--dark-light);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  background-color: var(--border);
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

/* Legal Layout Container (for legal subpages) */
.legal-main {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 40px;
  margin-bottom: 60px;
}

.legal-main h1 {
  font-size: 32px;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--secondary);
  padding-bottom: 10px;
}

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

.legal-main h2 {
  font-size: 20px;
  color: var(--dark-light);
  font-weight: 700;
  margin: 30px 0 15px;
}

.legal-main ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-main ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-container, 
  .about-container, 
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    gap: 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .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(6px, -6px);
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
