:root {
  --primary: #2c3e50;
  --secondary: #8b7355;
  --accent: #c4a77d;
  --light: #f8f6f3;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border: #e0dcd5;
  --success: #27ae60;
  --error: #c0392b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

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

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

.ad-disclosure {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px 15px;
  font-size: 12px;
}

header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--secondary);
}

nav {
  display: flex;
  align-items: center;
}

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

nav ul li a {
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

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

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  background-color: var(--light);
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 480px;
}

.hero-image {
  flex: 1;
  background-color: var(--border);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
}

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

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

.split-content {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  flex: 1;
  background-color: var(--border);
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 20px);
  min-width: 280px;
  background-color: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card-image {
  height: 200px;
  background-color: var(--border);
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 25px;
}

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

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 15px;
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.feature-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
}

.feature-item h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-light);
  font-size: 15px;
}

.testimonial-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background-color: rgba(255,255,255,0.1);
  padding: 35px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  opacity: 0.8;
}

.cta-section {
  background-color: var(--secondary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn {
  background-color: var(--white);
  color: var(--secondary);
}

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

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.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: 15px;
  border: 1px solid var(--border);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

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

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--accent);
}

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

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

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

.about-hero {
  display: flex;
  min-height: 60vh;
  background-color: var(--light);
}

.about-hero-content {
  flex: 1;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-content h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 500px;
}

.about-hero-image {
  flex: 1;
  background-color: var(--border);
  position: relative;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 30px;
  background-color: var(--light);
}

.value-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
  font-size: 15px;
}

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

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

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

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

.contact-info h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--accent);
}

.contact-item p {
  font-size: 16px;
  line-height: 1.8;
}

.contact-map {
  flex: 1;
  background-color: var(--border);
  position: relative;
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

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

.page-header h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
}

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

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

.legal-content h3 {
  font-size: 18px;
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--light);
}

.thanks-content {
  max-width: 600px;
  padding: 60px;
  background-color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}

.thanks-content h1 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 25px;
  z-index: 9999;
  display: none;
}

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

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

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

.cookie-text p {
  font-size: 14px;
  margin-bottom: 5px;
}

.cookie-text a {
  color: var(--accent);
}

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

.cookie-btn {
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.cookie-reject:hover {
  border-color: var(--white);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  padding: 100px 30px 30px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
}

.disclaimer {
  background-color: #f9f5f0;
  padding: 30px;
  margin-top: 40px;
  border-left: 4px solid var(--secondary);
}

.disclaimer p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.services-hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.services-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.all-services {
  padding: 80px 0;
}

.service-full {
  display: flex;
  margin-bottom: 60px;
  background-color: var(--white);
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.service-full:nth-child(even) {
  flex-direction: row-reverse;
}

.service-full-image {
  flex: 0 0 40%;
  background-color: var(--border);
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.service-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.service-full-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-full-content h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-full-content p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.service-full-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 25px;
}

.service-full-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  display: block;
}

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

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

  .hero-content,
  .split-content,
  .about-hero-content,
  .contact-info {
    padding: 50px 30px;
  }

  .hero-image,
  .split-image,
  .about-hero-image,
  .contact-map {
    min-height: 400px;
    position: relative;
  }

  .service-full {
    flex-direction: column;
  }

  .service-full:nth-child(even) {
    flex-direction: column;
  }

  .service-full-image {
    flex: none;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    padding: 30px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
