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

:root {
  --primary: #2C3E50;
  --secondary: #C9A961;
  --accent: #8B7355;
  --light: #F5F2ED;
  --dark: #1A1A1A;
  --text: #333333;
  --border: #DDD5C7;
}

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

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

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

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

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

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

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
}

.split-section {
  display: flex;
  min-height: 500px;
  align-items: stretch;
}

.split-left,
.split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

.split-left {
  background: #fff;
}

.split-right {
  background: var(--primary);
  color: #fff;
}

.split-reverse .split-left {
  order: 2;
  background: var(--light);
}

.split-reverse .split-right {
  order: 1;
  background: var(--accent);
}

.split-image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.split-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.split-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.split-content ul {
  list-style: none;
  margin: 25px 0;
}

.split-content ul li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
}

.split-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

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

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

.service-card {
  background: #fff;
  padding: 40px;
  margin: 20px 0;
  border-left: 4px solid var(--secondary);
}

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

.service-card .price {
  font-size: 2rem;
  color: var(--secondary);
  font-weight: bold;
  margin: 20px 0;
}

.service-card .price-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.service-item {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 35px;
  border-radius: 0;
  position: relative;
}

.service-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
}

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

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

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

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

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 20px;
  text-align: center;
  z-index: 999;
  display: none;
}

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

.sticky-cta .btn {
  margin: 0;
}

.hero-split {
  display: flex;
  min-height: 600px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-content .subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.testimonial-block {
  background: #fff;
  padding: 40px;
  margin: 30px 0;
  border-left: 5px solid var(--secondary);
  font-style: italic;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
  font-style: normal;
  color: var(--primary);
}

.stats-split {
  display: flex;
  background: var(--dark);
  color: #fff;
}

.stat-item {
  flex: 1;
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 50px;
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 20px;
}

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

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 30px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 10000;
  display: none;
}

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

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

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

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

.contact-info-item {
  margin-bottom: 25px;
}

.contact-info-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.image-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.overlay-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 40px;
  max-width: 800px;
}

.page-header {
  background: var(--primary);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.content-section {
  padding: 80px 0;
}

.content-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.content-split > div {
  flex: 1;
}

.legal-content {
  background: #fff;
  padding: 60px;
  margin: 40px auto;
  max-width: 900px;
}

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

.legal-content h3 {
  color: var(--accent);
  margin: 30px 0 15px;
  font-size: 1.3rem;
}

.legal-content p {
  margin-bottom: 15px;
}

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

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

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

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

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

.thanks-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 30px;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 30px;
    transition: left 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .split-section,
  .hero-split,
  .content-split {
    flex-direction: column;
  }

  .split-left,
  .split-right {
    padding: 50px 30px;
  }

  .split-reverse .split-left {
    order: 1;
  }

  .split-reverse .split-right {
    order: 2;
  }

  .hero-content {
    padding: 60px 30px;
  }

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

  .split-content h2 {
    font-size: 2rem;
  }

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

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

  .stats-split {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}
