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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: #fafafa;
}

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

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

header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #2c2c2c;
  text-decoration: none;
  letter-spacing: 1px;
}

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

nav a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

nav a:hover {
  color: #c19a6b;
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background: #2c2c2c;
}

.hero-editorial {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-editorial h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 400;
  color: #1a1a1a;
}

.hero-editorial .subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 50px auto;
  background: #ddd;
  background-size: cover;
  background-position: center;
}

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

.article-content {
  max-width: 680px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.article-content h3 {
  font-size: 28px;
  margin: 40px 0 20px;
  font-weight: 400;
  color: #333;
}

.article-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #3a3a3a;
}

.article-content em {
  font-style: italic;
  color: #555;
}

.inline-image {
  width: 100%;
  height: 400px;
  margin: 50px 0;
  background: #e0e0e0;
  background-size: cover;
  background-position: center;
}

.inline-cta {
  background: #f5f5f5;
  padding: 40px;
  margin: 60px 0;
  text-align: center;
  border-left: 4px solid #c19a6b;
}

.inline-cta h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 400;
}

.inline-cta p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #555;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: #2c2c2c;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1a1a1a;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: #c19a6b;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 40px 30px;
  border: 1px solid #e8e8e8;
}

.service-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}

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

.service-price {
  font-size: 28px;
  color: #c19a6b;
  margin-bottom: 25px;
  font-weight: 600;
}

.testimonial-section {
  background: #f9f9f9;
  padding: 60px 0;
  margin: 80px 0;
}

.testimonial {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  font-size: 20px;
  font-style: italic;
  color: #444;
  border-left: 3px solid #c19a6b;
}

.testimonial-author {
  margin-top: 20px;
  font-size: 16px;
  font-style: normal;
  color: #888;
}

.form-section {
  background: #fff;
  padding: 60px 40px;
  margin: 60px 0;
  border: 1px solid #e8e8e8;
}

.form-section h3 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-family: inherit;
}

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

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: #fff;
  padding: 20px;
  display: none;
  z-index: 1000;
}

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

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

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

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

.cookie-actions button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-accept {
  background: #c19a6b;
  color: #fff;
}

.btn-reject {
  background: #555;
  color: #fff;
}

footer {
  background: #2c2c2c;
  color: #ccc;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

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

.footer-column h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

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

.footer-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
}

.footer-column a:hover {
  color: #c19a6b;
}

.footer-bottom {
  text-align: center;
  padding: 30px 20px 0;
  margin-top: 40px;
  border-top: 1px solid #444;
  font-size: 13px;
}

.highlight-box {
  background: #fff9f0;
  padding: 50px 40px;
  margin: 60px 0;
  border-left: 5px solid #c19a6b;
}

.highlight-box h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 400;
}

.stats-section {
  display: flex;
  justify-content: space-around;
  padding: 60px 0;
  background: #f5f5f5;
  margin: 60px 0;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 48px;
  color: #c19a6b;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-label {
  font-size: 16px;
  color: #666;
}

.two-column {
  display: flex;
  gap: 40px;
  margin: 60px 0;
}

.column {
  flex: 1;
}

.image-gallery {
  display: flex;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.gallery-item {
  flex: 1;
  min-width: 200px;
  height: 300px;
  background: #e0e0e0;
  background-size: cover;
  background-position: center;
}

.pullquote {
  font-size: 32px;
  font-style: italic;
  color: #c19a6b;
  padding: 40px 0;
  text-align: center;
  margin: 60px 0;
  line-height: 1.4;
}

.contact-info {
  background: #fff;
  padding: 40px;
  border: 1px solid #e8e8e8;
  margin: 30px 0;
}

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.contact-info strong {
  color: #2c2c2c;
  font-weight: 600;
}

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

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 400;
}

.legal-content h2 {
  font-size: 26px;
  margin: 40px 0 20px;
  font-weight: 500;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

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

.thanks-page {
  text-align: center;
  padding: 100px 20px;
  min-height: 60vh;
}

.thanks-page h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
}

.thanks-page p {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #e8e8e8;
    gap: 15px;
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-editorial h1 {
    font-size: 36px;
  }

  .hero-editorial .subtitle {
    font-size: 18px;
  }

  .article-content h2 {
    font-size: 28px;
  }

  .article-content p {
    font-size: 17px;
  }

  .two-column {
    flex-direction: column;
  }

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

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

  .stats-section {
    flex-direction: column;
    gap: 30px;
  }

  .sticky-cta {
    bottom: 10px;
    right: 10px;
  }
}
