:root {
  --primary: #2d5a7b;
  --primary-dark: #1e3d54;
  --secondary: #7ba3c4;
  --accent: #e8a838;
  --light: #f7f9fb;
  --dark: #1a2533;
  --text: #2c3e50;
  --text-light: #6b7c8f;
  --white: #ffffff;
  --border: #d4e1ec;
  --success: #4a9c6d;
  --shadow: rgba(45, 90, 123, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.ad-disclosure {
  background-color: var(--dark);
  color: var(--text-light);
  font-size: 12px;
  padding: 6px 0;
  text-align: center;
}

header {
  background-color: var(--white);
  box-shadow: 0 2px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  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(--accent);
}

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

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

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

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

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

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

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

.split-section.reverse {
  flex-direction: row-reverse;
}

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

.split-image {
  flex: 1;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-section {
  min-height: 600px;
  background-color: var(--light);
}

.hero-section .split-content {
  padding: 80px 60px;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.lead {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

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

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

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

.btn-accent:hover {
  background-color: #d4962e;
  color: var(--dark);
}

.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(--dark);
  color: var(--white);
}

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

.section-dark p {
  color: var(--secondary);
}

.text-center {
  text-align: center;
}

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

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow);
}

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

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

.service-card-content {
  padding: 28px;
}

.service-card-content h3 {
  margin-bottom: 12px;
}

.service-card-content p {
  font-size: 15px;
  margin-bottom: 16px;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

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

.price-period {
  font-size: 14px;
  color: var(--text-light);
}

.features-list {
  list-style: none;
  margin-bottom: 20px;
}

.features-list li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.testimonial-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.testimonials {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  background-color: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--white);
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
}

.testimonial-role {
  font-size: 14px;
  color: var(--secondary);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s 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 {
  text-align: center;
  padding-top: 12px;
}

.info-blocks {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.info-block {
  flex: 1;
  min-width: 250px;
}

.info-block h4 {
  margin-bottom: 12px;
}

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

.contact-info li {
  padding: 8px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info .icon {
  width: 20px;
  color: var(--primary);
}

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

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

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

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--secondary);
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom p {
  color: var(--text-light);
  margin-bottom: 8px;
}

.disclaimer {
  background-color: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  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: 24px;
  flex-wrap: wrap;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

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

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--secondary);
  font-size: 18px;
}

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

.content-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-section h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-section ul,
.content-section ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

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

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

.thanks-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 40px;
  color: var(--white);
}

.thanks-container h1 {
  margin-bottom: 16px;
}

.thanks-container p {
  max-width: 500px;
  margin-bottom: 32px;
}

.about-values {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.value-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #d4962e 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto 28px;
}

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

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

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

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

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

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 8px 24px var(--shadow);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid var(--border);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 16px 0;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    gap: 32px;
  }

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

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

@media (max-width: 600px) {
  .service-card {
    min-width: 100%;
  }

  .testimonial {
    min-width: 100%;
  }

  .info-block {
    min-width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}
