:root {
  --primary: #1a5f4a;
  --primary-light: #2d8b6e;
  --secondary: #f4a941;
  --dark: #1c2833;
  --light: #f8f9fa;
  --grey: #6c757d;
  --white: #ffffff;
  --accent: #e8f5f1;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
  background: #e09832;
}

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

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

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

.header-top {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ad-disclosure {
  background: var(--secondary);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-main {
  padding: 15px 0;
}

.nav-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

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

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s ease;
}

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

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

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.split-section {
  display: flex;
  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(--accent);
  position: relative;
  overflow: hidden;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  min-height: 600px;
}

.hero-section .split-content {
  color: var(--white);
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.text-content p {
  margin-bottom: 20px;
  color: var(--grey);
}

.features-list {
  margin-top: 25px;
}

.features-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--grey);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 0;
}

.service-card {
  flex: 1;
  min-width: 300px;
  max-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

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

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

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

.service-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card-content p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

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

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey);
}

.bg-light {
  background: var(--light);
}

.bg-accent {
  background: var(--accent);
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding-top: 80px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--grey);
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--grey);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: 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;
  min-width: 200px;
}

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

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

.footer-col ul li a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

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

.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.disclaimer {
  background: var(--light);
  padding: 30px;
  border-left: 4px solid var(--secondary);
  margin: 40px 0;
  font-size: 0.9rem;
  color: var(--grey);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

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

.content-section h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.content-section h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

.content-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.content-section ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--grey);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

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

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

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-item {
  flex: 1;
  min-width: 250px;
  background: var(--accent);
  padding: 30px;
  border-radius: 8px;
}

.contact-info-item h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info-item p {
  color: var(--grey);
  margin: 0;
}

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

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  color: var(--primary);
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.thanks-content p {
  color: var(--grey);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  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;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}

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

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

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
  background: rgba(255,255,255,0.1);
}

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

.team-member {
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - 20px);
  text-align: center;
}

.team-member-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background-color: var(--accent);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.team-member span {
  color: var(--primary);
  font-size: 0.9rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 0;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--grey);
  font-size: 0.95rem;
}

.inline-cta {
  background: var(--accent);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.inline-cta h3 {
  margin-bottom: 5px;
}

.inline-cta p {
  color: var(--grey);
  margin: 0;
}

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

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

  .split-image {
    min-height: 350px;
  }

  .service-card {
    max-width: calc(50% - 15px);
  }

  .team-member {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .split-content {
    padding: 40px 25px;
  }

  h2 {
    font-size: 1.8rem;
  }

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

  .team-member {
    max-width: 100%;
  }

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

  .header-top .container {
    flex-direction: column;
    gap: 8px;
  }

  .footer-col {
    min-width: 100%;
  }
}
