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

:root {
  --primary: #2c5f7f;
  --secondary: #4a7c9e;
  --accent: #f59e42;
  --dark: #1a1a1a;
  --light: #f4f4f4;
  --white: #ffffff;
  --gray: #6b6b6b;
  --border: #d4d4d4;
  --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

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

.ad-disclosure {
  background: #fff3cd;
  color: #856404;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

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

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text {
  flex: 1;
}

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

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-image {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.btn:hover {
  background: #e08a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 66, 0.3);
}

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

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

.section {
  padding: 80px 0;
}

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

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

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

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

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  flex: 0 0 calc(33.333% - 20px);
  min-width: 280px;
}

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

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

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

.card p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.card-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 16px;
}

.form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

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

.form-container h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 28px;
  text-align: center;
}

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

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

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

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

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

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--white);
}

.service-option:hover {
  border-color: var(--primary);
  background: #f8f9fa;
}

.service-option input[type="radio"] {
  margin-right: 12px;
  width: auto;
}

.service-option label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.service-option.selected {
  border-color: var(--primary);
  background: #e7f3f8;
}

.features-grid {
  display: flex;
  gap: 20px;
  margin: 60px 0;
}

.feature-card {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  flex: 1;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.feature-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

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

.stats-section {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 240px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent);
}

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

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

.footer-section a {
  color: #d4d4d4;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1000;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
}

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

.about-text p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
}

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

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

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
}

.info-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.info-item p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

.contact-map {
  flex: 1;
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
}

.service-card-large {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  transition: all 0.3s;
}

.service-card-large:hover {
  box-shadow: var(--card-hover);
}

.service-card-large:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 0 0 40%;
  background: var(--light);
  min-height: 320px;
}

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

.service-details {
  flex: 1;
  padding: 44px;
}

.service-details h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-details p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

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

.service-features li {
  padding: 10px 0;
  color: var(--gray);
  padding-left: 28px;
  position: relative;
}

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

.price-tag {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.legal-content {
  max-width: 900px;
  margin: 60px auto;
  background: var(--white);
  padding: 60px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.legal-content h1 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 32px;
}

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

.legal-content h3 {
  font-size: 20px;
  color: var(--dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--gray);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 20px;
  margin-left: 24px;
  color: var(--gray);
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.thanks-container {
  max-width: 700px;
  margin: 100px auto;
  text-align: center;
  background: var(--white);
  padding: 80px 60px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
  font-size: 80px;
  color: var(--accent);
  margin-bottom: 24px;
}

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

.thanks-container p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.disclaimer {
  background: #fff8e1;
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer p {
  font-size: 14px;
  color: #6b5400;
  margin-bottom: 8px;
}

@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
  }

  .cards-grid {
    flex-direction: column;
  }

  .card {
    flex: 1;
  }

  .features-grid {
    flex-direction: column;
  }

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

  .contact-grid {
    flex-direction: column;
  }

  .service-card-large,
  .service-card-large:nth-child(even) {
    flex-direction: column;
  }

  .service-image {
    flex: none;
    height: 280px;
  }

  nav ul {
    gap: 16px;
    font-size: 14px;
  }
}

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

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

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

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

  .legal-content {
    padding: 40px 24px;
  }

  .thanks-container {
    padding: 60px 32px;
  }

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

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