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

:root {
  --primary: #2c3e50;
  --secondary: #8b7355;
  --accent: #c9a882;
  --text: #333;
  --light: #f8f6f3;
  --white: #ffffff;
  --border: #e0ddd8;
}

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

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

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

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  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: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.ad-notice {
  font-size: 11px;
  color: #888;
  font-style: italic;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

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

.hero {
  padding: 80px 0 60px;
  background-color: var(--light);
}

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

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 24px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 300;
}

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

.cta-button:hover {
  background-color: #6d5a43;
}

.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
}

.section-intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.content-block {
  margin-bottom: 60px;
}

.content-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--primary);
}

.content-block h3 {
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 30px;
  font-weight: 500;
  color: var(--secondary);
}

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

.inline-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin: 40px 0;
  background-color: var(--light);
}

.service-card {
  background-color: var(--white);
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
  border-radius: 3px;
}

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

.service-card p {
  margin-bottom: 16px;
  color: #555;
}

.service-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 20px;
}

.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 24px;
  background-color: var(--light);
}

.inline-cta {
  text-align: center;
  padding: 50px 0;
  background-color: var(--primary);
  color: var(--white);
  margin: 60px 0;
  border-radius: 3px;
}

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

.inline-cta .cta-button {
  background-color: var(--accent);
  color: var(--primary);
}

.inline-cta .cta-button:hover {
  background-color: #d4b892;
}

.form-section {
  background-color: var(--light);
  padding: 60px 40px;
  border-radius: 3px;
  margin-top: 40px;
}

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

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

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

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

.form-button {
  width: 100%;
  padding: 16px;
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: inherit;
}

.form-button:hover {
  background-color: #6d5a43;
}

.testimonial {
  background-color: var(--white);
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--accent);
  font-style: italic;
}

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

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

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

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-column h4 {
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-column a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

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

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

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

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

.cookie-accept {
  background-color: var(--accent);
  color: var(--primary);
}

.cookie-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

.reference-list {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.reference-list h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

.reference-list ol {
  padding-left: 20px;
}

.reference-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.reference-list a {
  color: var(--secondary);
  text-decoration: none;
}

.reference-list a:hover {
  text-decoration: underline;
}

.citation {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.disclaimer {
  background-color: #fff9e6;
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 40px 0;
  font-size: 14px;
  color: #666;
}

.contact-info {
  background-color: var(--light);
  padding: 40px;
  border-radius: 3px;
  margin-bottom: 40px;
}

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

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.8;
}

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

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

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

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

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 8px;
}

.thanks-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
}

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

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

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  nav {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-image {
    height: 280px;
  }

  .section-title {
    font-size: 28px;
  }

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

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

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

  .cookie-button {
    width: 100%;
  }
}
