:root {
  --primary: #2d5016;
  --secondary: #8b4513;
  --accent: #d4a574;
  --dark: #1a1a1a;
  --light: #f8f6f3;
  --text: #333;
  --border: #e0ddd8;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.editorial-nav {
  position: sticky;
  top: 0;
  background: rgba(248, 246, 243, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.editorial-nav .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.3s;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.article-hero {
  max-width: 720px;
  margin: 3rem auto 2rem;
  padding: 0 1.5rem;
}

.article-hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 700;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 3px;
}

.article-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.article-content h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--secondary);
  font-weight: 600;
}

.inline-image {
  width: 100%;
  margin: 2.5rem 0;
  border-radius: 3px;
}

.inline-cta {
  background: var(--light);
  border: 2px solid var(--primary);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 3px;
  text-align: center;
}

.inline-cta h3 {
  margin: 0 0 1rem;
  color: var(--primary);
}

.inline-cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: all 0.3s;
  font-weight: 500;
}

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

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

.btn-secondary:hover {
  background: #6d3610;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card .price {
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 700;
  margin: 1rem 0;
}

.service-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.service-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.form-section {
  background: white;
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-radius: 3px;
  border: 1px solid var(--border);
}

.form-section h2 {
  margin-top: 0;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 1rem;
  text-align: center;
  z-index: 99;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  display: none;
}

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

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

.sticky-cta .btn:hover {
  background: var(--light);
}

.testimonial {
  background: #f0ede8;
  padding: 2rem;
  margin: 2.5rem 0;
  border-left: 4px solid var(--primary);
  font-style: italic;
  border-radius: 0 3px 3px 0;
}

.testimonial-author {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--secondary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.96);
  color: white;
  padding: 1.5rem;
  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: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

footer {
  background: var(--dark);
  color: #ccc;
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 720px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
  justify-content: center;
}

.footer-links a {
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #888;
}

.page-header {
  max-width: 720px;
  margin: 3rem auto 2rem;
  padding: 0 1.5rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.page-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary);
}

.page-content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  color: var(--secondary);
}

.page-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.page-content ul,
.page-content ol {
  margin: 1rem 0 1.5rem 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info strong {
  min-width: 140px;
  color: var(--primary);
}

.thanks-message {
  max-width: 680px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: white;
  border-radius: 3px;
  text-align: center;
  border: 2px solid var(--primary);
}

.thanks-message h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.thanks-message p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.highlight-box {
  background: #f0ede8;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 3px;
  border-left: 4px solid var(--secondary);
}

.two-column {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

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

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

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-image {
    height: 280px;
  }

  .article-content p {
    font-size: 1.05rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card .price {
    font-size: 1.5rem;
  }
}
