:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #0f3460;
  --highlight: #e94560;
  --light: #f5f5f5;
  --text: #2d2d2d;
  --text-light: #666;
  --border: #e0e0e0;
}

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

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

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

.wide-section {
  max-width: 100%;
  padding: 60px 20px;
}

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

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

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

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

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.hero-editorial {
  background: white;
  padding: 80px 20px 60px;
}

.hero-editorial h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 800;
}

.hero-subtext {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 300;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.content-block {
  background: white;
  padding: 50px 20px;
  margin-bottom: 2px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary);
  line-height: 1.3;
}

.content-block h3 {
  font-size: 1.5rem;
  margin: 35px 0 15px;
  color: var(--secondary);
}

.content-block p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.inline-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.cta-inline {
  display: inline-block;
  background: var(--highlight);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  margin: 20px 0;
  transition: all 0.3s;
  font-weight: 600;
}

.cta-inline:hover {
  background: #d63850;
  transform: translateY(-2px);
}

.quote-block {
  border-left: 4px solid var(--highlight);
  padding: 25px 30px;
  margin: 40px 0;
  background: #f9f9f9;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--secondary);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  padding: 35px;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--highlight);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin: 0 0 15px;
  color: var(--primary);
}

.service-card p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--highlight);
  margin: 15px 0;
}

.service-card.selected {
  border-color: var(--highlight);
  background: #fff5f7;
}

.form-section {
  background: var(--secondary);
  color: white;
  padding: 60px 20px;
  margin-top: 60px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-container h2 {
  color: white;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  border-radius: 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

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

.submit-btn {
  background: var(--highlight);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #d63850;
}

.footer {
  background: var(--primary);
  color: white;
  padding: 50px 20px 30px;
}

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

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

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

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

.footer-column a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

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

.cookie-banner.active {
  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-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}

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

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

.cookie-btn:hover {
  opacity: 0.9;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--highlight);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(233,69,96,0.4);
  font-weight: 600;
  transition: all 0.3s;
  z-index: 99;
}

.sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(233,69,96,0.5);
}

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

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

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

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

.contact-info {
  background: white;
  padding: 40px;
  margin: 30px 0;
  border: 1px solid var(--border);
}

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

.contact-item {
  margin: 15px 0;
  font-size: 1.05rem;
}

.contact-item strong {
  display: inline-block;
  width: 140px;
  color: var(--secondary);
}

.legal-page {
  background: white;
  padding: 60px 20px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.legal-page h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--secondary);
}

.legal-page p {
  margin-bottom: 20px;
}

.legal-page ul {
  margin: 20px 0 20px 30px;
}

.legal-page li {
  margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

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

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero-editorial h1 {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
  }

  .content-block h2 {
    font-size: 1.6rem;
  }

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

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

  .sticky-cta {
    bottom: 10px;
    right: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
