:root {
  --color-primary: #2d4a3e;
  --color-secondary: #c9a962;
  --color-accent: #8b6914;
  --color-dark: #1a1a1a;
  --color-light: #f8f6f1;
  --color-muted: #6b6b6b;
  --color-bg-alt: #e8e4dc;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-light);
}

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

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

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

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

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

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

.header {
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-bg-alt);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-dark);
  margin: 5px 0;
  transition: transform 0.3s ease;
}

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  padding: 5px 0;
  position: relative;
}

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

.main-nav a:hover::after {
  width: 100%;
}

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

.hero-asymmetric .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

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

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

.hero-image-wrapper {
  flex: 1.2;
  position: relative;
}

.hero-image-main {
  width: 100%;
  height: 450px;
  background-color: var(--color-bg-alt);
  position: relative;
  transform: rotate(-2deg);
}

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

.hero-image-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  transform: rotate(5deg);
  z-index: -1;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

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

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

.section {
  padding: 80px 0;
}

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

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

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

.section-dark .section-title {
  color: var(--color-light);
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-muted);
  margin-bottom: 40px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.offset-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.offset-layout-reverse {
  flex-direction: row-reverse;
}

.offset-content {
  flex: 1;
  padding-top: 40px;
}

.offset-image {
  flex: 1;
  background-color: var(--color-bg-alt);
  position: relative;
}

.offset-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.offset-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-secondary);
  z-index: -1;
}

.offset-layout-reverse .offset-image::before {
  left: auto;
  right: -20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: var(--color-light);
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:nth-child(even) {
  transform: translateY(20px);
}

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

.service-card:nth-child(even):hover {
  transform: translateY(15px);
}

.service-card-image {
  height: 180px;
  background-color: var(--color-bg-alt);
  margin-bottom: 20px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

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

.service-card p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 15px;
}

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

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

.overlap-section {
  position: relative;
  padding: 100px 0;
}

.overlap-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: var(--color-primary);
}

.overlap-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.overlap-text {
  flex: 1;
  color: var(--color-light);
  padding: 40px;
}

.overlap-text h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 20px;
}

.overlap-image {
  flex: 1;
  background-color: var(--color-bg-alt);
}

.overlap-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.testimonials-staggered {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  padding: 35px;
  background-color: var(--color-light);
  position: relative;
}

.testimonial-item:nth-child(2) {
  margin-top: 50px;
}

.testimonial-item:nth-child(3) {
  margin-top: -30px;
}

.testimonial-item::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-location {
  font-size: 13px;
  color: var(--color-muted);
}

.form-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  color: var(--color-light);
}

.form-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.form-info {
  flex: 1;
}

.form-info h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 20px;
}

.form-info p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.form-container {
  flex: 1;
  background-color: var(--color-light);
  padding: 40px;
  color: var(--color-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 2px solid var(--color-bg-alt);
  background-color: var(--color-light);
  transition: border-color 0.3s ease;
  font-family: var(--font-main);
}

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

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

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
}

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

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

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

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

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

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

.footer-col a:hover {
  color: var(--color-secondary);
}

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

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

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

.disclaimer {
  background-color: var(--color-bg-alt);
  padding: 25px;
  margin-top: 40px;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.8;
}

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

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 17px;
  opacity: 0.85;
}

.content-page {
  padding: 60px 0;
}

.content-page h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-primary);
  margin: 40px 0 15px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p {
  margin-bottom: 15px;
  color: var(--color-dark);
}

.content-page ul {
  margin: 15px 0 15px 25px;
}

.content-page li {
  margin-bottom: 8px;
  color: var(--color-dark);
}

.contact-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 25px;
}

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

.contact-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 16px;
  color: var(--color-dark);
}

.contact-map {
  flex: 1;
  background-color: var(--color-bg-alt);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.thanks-content p {
  font-size: 17px;
  color: var(--color-muted);
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

.cookie-btn:hover {
  opacity: 0.85;
}

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

.feature-box {
  padding: 30px;
  background-color: var(--color-light);
}

.feature-box:nth-child(1) {
  flex: 2 1 60%;
}

.feature-box:nth-child(2) {
  flex: 1 1 35%;
}

.feature-box:nth-child(3) {
  flex: 1 1 35%;
}

.feature-box:nth-child(4) {
  flex: 2 1 60%;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 15px;
  color: var(--color-muted);
}

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

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

.cta-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cta-floating a:hover {
  transform: scale(1.1);
}

.cta-floating svg {
  width: 24px;
  height: 24px;
  fill: var(--color-dark);
}

.about-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-secondary);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .hero-asymmetric .container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-image-wrapper {
    width: 100%;
  }

  .offset-layout,
  .offset-layout-reverse {
    flex-direction: column;
  }

  .offset-content {
    padding-top: 0;
  }

  .overlap-bg {
    width: 100%;
    height: 50%;
  }

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

  .form-wrapper {
    flex-direction: column;
  }

  .contact-layout {
    flex-direction: column;
  }

  .testimonial-item:nth-child(2),
  .testimonial-item:nth-child(3) {
    margin-top: 0;
  }

  .service-card:nth-child(even) {
    transform: none;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-light);
    padding: 20px;
    display: none;
    border-top: 1px solid var(--color-bg-alt);
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

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

  .section {
    padding: 50px 0;
  }

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

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

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