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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #ffffff;
}

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

header {
  background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-disclosure {
  background: rgba(255,255,255,0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  padding: 0 3rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
  display: inline-block;
  background: #e67e22;
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230,126,34,0.4);
}

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

.split-content {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  flex: 1;
  position: relative;
  background-color: #e8f4f0;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-section:nth-child(even) {
  flex-direction: row-reverse;
}

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a472a;
}

.split-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 0;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: #d5e8df;
}

.service-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d5f3f;
}

.service-content p {
  margin-bottom: 1.5rem;
  color: #666;
  flex: 1;
}

.price {
  font-size: 1.8rem;
  color: #e67e22;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-dark {
  background: #1a472a;
  color: white;
  padding: 5rem 0;
}

.section-light {
  background: #f8fafa;
  padding: 5rem 0;
}

.section-white {
  background: white;
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1a472a;
}

.section-dark .section-title {
  color: white;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2d5f3f;
}

.contact-info {
  background: #f8fafa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  color: #1a472a;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #555;
}

.contact-email {
  color: #2d5f3f;
  font-weight: 600;
  pointer-events: none;
}

footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

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

.footer-section a {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

.disclaimer {
  background: #fff9e6;
  border-left: 4px solid #e67e22;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #666;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 2000;
  display: none;
}

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

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

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

.btn-accept,
.btn-reject {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-accept {
  background: #27ae60;
  color: white;
}

.btn-accept:hover {
  background: #229954;
}

.btn-reject {
  background: #95a5a6;
  color: white;
}

.btn-reject:hover {
  background: #7f8c8d;
}

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

.thanks-box {
  max-width: 600px;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thanks-box h1 {
  color: #27ae60;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-box p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

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

.legal-content h1 {
  color: #1a472a;
  margin-bottom: 2rem;
}

.legal-content h2 {
  color: #2d5f3f;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #555;
}

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

.reference-link {
  color: #2d5f3f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.reference-link:hover {
  color: #e67e22;
}

.about-intro {
  padding: 3rem;
  background: white;
}

.about-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

  .split-content {
    padding: 2rem;
  }

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

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

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

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