:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --secondary: #ed8936;
  --secondary-dark: #dd6b20;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --bg-dark: #1a202c;
  --border: #e2e8f0;
  --success: #38a169;
  --fallback-img: #cbd5e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--secondary-dark);
  color: var(--bg-white);
}

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

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

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

.btn-light:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* Header */
.header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ad-disclosure {
  background-color: var(--primary);
  color: var(--bg-white);
  font-size: 0.75rem;
  padding: 6px 0;
  text-align: center;
}

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

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

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

.nav-menu a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--fallback-img);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,54,93,0.92) 0%, rgba(26,54,93,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 60px 40px;
  color: var(--bg-white);
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

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

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

.section-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-dark .section-title {
  color: var(--bg-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 40px;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* Problem Section */
.problem-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.problem-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--secondary);
}

.problem-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

/* Story Section */
.story-section {
  position: relative;
}

.story-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 0 0 40%;
  background-color: var(--fallback-img);
  border-radius: 12px;
  overflow: hidden;
}

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

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.story-text p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

/* Benefits Section */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background-color: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

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

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--bg-white);
}

.benefit-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.benefit-content p {
  color: var(--text-medium);
}

/* Services Section */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 200px;
  background-color: var(--fallback-img);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-content p {
  color: var(--text-medium);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 15px;
}

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

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Trust Section */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badge {
  text-align: center;
  padding: 20px;
}

.trust-badge svg {
  width: 48px;
  height: 48px;
  fill: var(--secondary);
  margin-bottom: 12px;
}

.trust-badge p {
  font-weight: 600;
  color: var(--text-dark);
}

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

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Form Section */
.form-section {
  background-color: var(--bg-light);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

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

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

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

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

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

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

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

.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

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

/* Disclaimer */
.disclaimer {
  background-color: var(--bg-light);
  padding: 30px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.disclaimer p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

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

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

.cookie-accept {
  background-color: var(--secondary);
  color: var(--bg-white);
}

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

.cookie-reject {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--bg-white);
}

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

/* Thanks Page */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--bg-white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.thanks-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-page {
  padding: 60px 0;
}

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

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--primary);
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-medium);
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-medium);
}

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

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 100px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 0 0 45%;
  background-color: var(--fallback-img);
  border-radius: 12px;
  overflow: hidden;
}

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

/* Contact Page */
.contact-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-item {
  flex: 1 1 250px;
  padding: 30px;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.contact-item p {
  color: var(--text-medium);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 900;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(237,137,54,0.4);
  font-weight: 600;
  transition: all 0.3s ease;
}

.sticky-cta a:hover {
  background-color: var(--secondary-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .story-content {
    flex-direction: column;
  }

  .story-image {
    flex: none;
    width: 100%;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .problem-item {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 12px 24px;
  }

  .trust-badges {
    gap: 20px;
  }
}
