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

:root {
  --color-primary: #1a3a52;
  --color-secondary: #2c5f7e;
  --color-accent: #d4a574;
  --color-light: #f8f9fa;
  --color-dark: #1f1f1f;
  --color-text: #333;
  --color-border: #e1e4e8;
}

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

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

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

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.ad-notice {
  font-size: 11px;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 3px;
  color: rgba(255,255,255,0.9);
}

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

nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c5f7e;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 60px 20px;
}

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

.hero p {
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.95;
}

.content-section {
  padding: 80px 20px;
}

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

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

.section-intro h2 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 18px;
  font-weight: 600;
}

.section-intro p {
  font-size: 18px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
}

.editorial-block {
  max-width: 680px;
  margin: 0 auto 50px;
}

.editorial-block h3 {
  font-size: 26px;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.editorial-block p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.editorial-image {
  width: 100%;
  max-width: 680px;
  margin: 40px auto;
  border-radius: 6px;
  overflow: hidden;
  background-color: #e8ebee;
}

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

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 720px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid var(--color-border);
  padding: 35px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

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

.btn-secondary:hover {
  background: #c49563;
}

.cta-inline {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  margin: 60px 0;
  border-radius: 8px;
}

.cta-inline h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.cta-inline p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.form-container {
  max-width: 580px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  font-size: 15px;
  font-family: inherit;
}

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

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.service-option {
  padding: 18px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

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

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

.service-option h4 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.service-option p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.service-option .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
}

footer {
  background: var(--color-dark);
  color: #ccc;
  padding: 50px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 18px;
}

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

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  font-size: 14px;
  color: #999;
}

.disclaimer {
  max-width: 680px;
  margin: 50px auto;
  padding: 25px;
  background: #fff8f0;
  border-left: 4px solid var(--color-accent);
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: white;
  padding: 25px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
}

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

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

.cookie-content p {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: opacity 0.2s;
}

.cookie-buttons button:hover {
  opacity: 0.9;
}

.accept-cookies {
  background: var(--color-accent);
  color: white;
}

.reject-cookies {
  background: #555;
  color: white;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

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

.legal-content h3 {
  font-size: 20px;
  color: var(--color-secondary);
  margin-top: 30px;
  margin-bottom: 14px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

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

.contact-info {
  max-width: 680px;
  margin: 0 auto;
}

.info-block {
  margin-bottom: 35px;
}

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

.info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.thanks-container {
  max-width: 680px;
  margin: 80px auto;
  text-align: center;
  padding: 60px 20px;
}

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

.thanks-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

.about-intro {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-intro img {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
  background-color: #e8ebee;
}

.about-intro h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.about-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

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

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

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

  nav ul {
    gap: 15px;
  }

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

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

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