:root {
  --color-primary: #2d5a7b;
  --color-secondary: #4a9c6d;
  --color-accent: #e8a545;
  --color-dark: #1a2634;
  --color-light: #f7f9fb;
  --color-muted: #6b7c8f;
  --color-border: #d1dbe5;
  --color-white: #ffffff;
  --color-bg-alt: #eef3f7;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --radius-small: 6px;
  --radius-medium: 12px;
  --radius-large: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
}

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

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

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

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

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

.header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.ad-disclosure {
  background-color: var(--color-bg-alt);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
}

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

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

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

.nav-list a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  margin: 5px 0;
  transition: 0.3s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-small);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #3d8a5c;
  color: var(--color-white);
}

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

.btn-secondary:hover {
  background-color: #234a66;
  color: var(--color-white);
}

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

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

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

.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(--color-bg-alt);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-text {
  flex: 1;
}

.hero-tag {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-dark);
}

.hero p {
  font-size: 20px;
  color: var(--color-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  background-color: var(--color-border);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image img {
  width: 100%;
  height: 400px;
}

.section {
  padding: 100px 0;
}

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

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

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

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

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

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

.problem-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a4055 100%);
  color: var(--color-white);
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.problem-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: rgba(255,255,255,0.08);
  padding: 32px;
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--color-accent);
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-accent);
}

.problem-card p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.story-section {
  padding: 120px 0;
}

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

.story-content.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 34px;
  margin-bottom: 24px;
  line-height: 1.3;
}

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

.story-text ul {
  list-style: none;
  margin: 24px 0;
}

.story-text li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
}

.story-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.story-image {
  flex: 1;
  background-color: var(--color-border);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.story-image img {
  width: 100%;
  height: 450px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-card {
  flex: 1 1 300px;
  background-color: var(--color-white);
  padding: 40px 32px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-alt) 100%);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 340px;
  max-width: 400px;
  background-color: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  position: relative;
}

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

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

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

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

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

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

.services-section {
  padding: 100px 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: var(--color-white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-content {
  padding: 28px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-secondary);
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-muted);
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1d4a64 100%);
  color: var(--color-white);
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.cta-section .btn-primary:hover {
  background-color: #d49438;
}

.form-section {
  padding: 100px 0;
  background-color: var(--color-bg-alt);
}

.form-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.form-info {
  flex: 1;
}

.form-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.form-info p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.form-features {
  list-style: none;
}

.form-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--color-dark);
}

.form-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.form-container {
  flex: 1;
  background-color: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

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

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

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

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

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

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
}

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

.about-text {
  flex: 1.2;
}

.about-text h1 {
  font-size: 42px;
  margin-bottom: 24px;
}

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

.about-image {
  flex: 1;
  background-color: var(--color-border);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
}

.team-section {
  padding: 100px 0;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-card {
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--color-primary);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-white);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.team-card span {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 600;
}

.team-card p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
}

.contact-page {
  padding: 80px 0;
}

.contact-grid {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

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

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

.contact-details {
  list-style: none;
}

.contact-details li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 16px;
}

.contact-details .label {
  font-weight: 600;
  min-width: 120px;
  color: var(--color-primary);
}

.contact-map {
  flex: 1;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-medium);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-page {
  padding: 80px 0;
}

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

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-border);
}

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

.legal-content p {
  margin-bottom: 16px;
  color: var(--color-muted);
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--color-muted);
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-white);
}

.thanks-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--color-muted);
  margin-bottom: 32px;
}

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

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

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

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

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

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

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

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.disclaimer {
  background-color: var(--color-bg-alt);
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
}

.disclaimer p {
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 14px;
}

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

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-small);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 14px;
}

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

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

.inline-cta {
  background-color: var(--color-bg-alt);
  padding: 40px;
  border-radius: var(--radius-medium);
  text-align: center;
  margin: 40px 0;
}

.inline-cta h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.inline-cta p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.stats-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

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

.stat-item {
  flex: 1 1 180px;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 16px;
}

.process-section {
  padding: 100px 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--color-muted);
}

@media (max-width: 992px) {
  .hero-content,
  .story-content,
  .story-content.reverse,
  .about-content,
  .form-wrapper,
  .contact-grid {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-image,
  .story-image,
  .about-image {
    max-width: 100%;
  }

  .form-container {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    gap: 0;
  }

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

  .nav-list li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-list a {
    display: block;
    padding: 14px 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 30px;
  }

  .section {
    padding: 60px 0;
  }

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

  .footer-grid {
    gap: 30px;
  }

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

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