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

:root {
  --primary: #2c2c2c;
  --secondary: #8b7355;
  --accent: #d4af37;
  --light: #f5f5f0;
  --text: #333;
  --text-light: #666;
  --border: #e0e0d8;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

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

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.ad-disclosure {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fafafa;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.split-hero {
  display: flex;
  min-height: 85vh;
  align-items: stretch;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5%;
  background: white;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--secondary);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: var(--primary);
}

.split-section {
  display: flex;
  min-height: 60vh;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  padding: 5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

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

.section-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--border);
}

.section-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

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

.section-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  background: white;
}

.service-card {
  flex: 1 1 calc(50% - 2rem);
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--border);
}

.service-card-content {
  padding: 2rem;
}

.service-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.service-card-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.select-service-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
}

.select-service-btn:hover {
  background: var(--primary);
}

.select-service-btn.selected {
  background: var(--accent);
  color: var(--primary);
}

.form-section {
  padding: 5rem 5%;
  background: var(--light);
  display: none;
}

.form-section.visible {
  display: block;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 500;
}

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

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

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

.submit-btn:hover {
  background: var(--primary);
}

.contact-split {
  display: flex;
  min-height: 70vh;
}

.contact-info {
  flex: 1;
  padding: 5rem 5%;
  background: var(--primary);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-weight: 600;
}

.contact-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-map {
  flex: 1;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

footer {
  background: var(--primary);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

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

.disclaimer {
  background: #fff9e6;
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 5%;
  background: white;
  min-height: 70vh;
}

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

.legal-page h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 5%;
  background: white;
}

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

.thanks-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.thanks-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem 5%;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  border-top: 2px solid var(--secondary);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-text p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s;
}

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

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

.cookie-reject {
  background: var(--border);
  color: var(--text);
}

.cookie-reject:hover {
  background: #d0d0c8;
}

@media (max-width: 968px) {
  .split-hero,
  .split-section,
  .contact-split {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .service-card {
    flex: 1 1 100%;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

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