:root {
  --primary: #1a3a5c;
  --secondary: #e85a4f;
  --accent: #2d6a4f;
  --light: #f8f9fa;
  --dark: #212529;
  --text: #333333;
  --text-light: #666666;
  --border: #dee2e6;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  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(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 12px;
  text-align: center;
}

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

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

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

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}

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

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

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

.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(--primary);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 60px 24px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: #d14a3f;
  transform: translateY(-2px);
}

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

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

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

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

section {
  padding: 80px 0;
}

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

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

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

.section-header h2 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 16px;
}

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

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

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

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

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

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

.story-text {
  flex: 1;
}

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

.story-text p {
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.story-image {
  flex: 1;
  background-color: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
}

.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d4a6f 100%);
  color: var(--white);
}

.testimonials .section-header h2 {
  color: var(--white);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

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

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

.testimonial-info span {
  font-size: 14px;
  opacity: 0.7;
}

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

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

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

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

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

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

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

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

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

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

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

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

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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(--secondary);
}

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

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

.about-hero {
  padding: 120px 0 80px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

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

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

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.value-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  display: flex;
  gap: 24px;
}

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

.value-content h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-content p {
  color: var(--text-light);
  font-size: 15px;
}

.contact-info-section {
  padding: 80px 0;
}

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

.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-details h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 24px;
}

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

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

.contact-text h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--text-light);
  font-size: 15px;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  min-height: 350px;
  background-color: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-hero {
  padding: 100px 0 60px;
  background-color: var(--primary);
  color: var(--white);
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
}

.legal-content {
  padding: 60px 0;
}

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

.legal-content h2:first-child {
  margin-top: 0;
}

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

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

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

.thanks-section {
  min-height: 70vh;
  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(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 48px;
  color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disclaimer {
  background-color: var(--light);
  padding: 24px;
  border-radius: var(--radius);
  margin: 40px 0;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.references {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.references h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
}

.references ol {
  margin-left: 20px;
}

.references li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-light);
}

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

.references a:hover {
  text-decoration: underline;
}

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

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

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

.cookie-content p {
  font-size: 14px;
  flex: 1;
  min-width: 300px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #d14a3f;
}

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

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 998;
  display: none;
}

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

.sticky-cta .btn {
  box-shadow: 0 4px 20px rgba(232, 90, 79, 0.4);
}

.benefits-list {
  list-style: none;
  margin: 24px 0;
}

.benefits-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 17px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.split-section {
  display: flex;
  min-height: 500px;
}

.split-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  flex: 1;
  background-color: var(--border);
  min-height: 400px;
}

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

.inline-cta {
  margin: 40px 0;
  padding: 30px;
  background-color: var(--light);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}

.inline-cta p {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 40px;
  }

  .story-content,
  .story-content.reverse {
    flex-direction: column;
  }

  .story-image {
    min-height: 300px;
  }

  .split-section {
    flex-direction: column;
  }

  .split-content {
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  .header-main {
    padding: 12px 16px;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  nav ul.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

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

  .hero p {
    font-size: 17px;
  }

  section {
    padding: 60px 0;
  }

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

  .form-container {
    padding: 30px 20px;
  }

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

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