:root {
  --primary: #1a365d;
  --secondary: #2b6cb0;
  --accent: #ed8936;
  --dark: #1a202c;
  --light: #f7fafc;
  --gray: #718096;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

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

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

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

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

header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

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

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

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

.mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

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

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

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

.split-image {
  flex: 1;
  min-height: 400px;
  background-color: var(--gray);
  position: relative;
  overflow: hidden;
}

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

.split-content h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.split-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

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

.btn-primary:hover {
  background-color: #dd6b20;
}

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

.btn-secondary:hover {
  background-color: #2c5282;
}

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

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

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

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

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

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

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  flex: 0 1 350px;
  transition: transform 0.3s;
}

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

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

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

.service-content {
  padding: 25px;
}

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

.service-content p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 15px;
}

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

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

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

.bg-dark .section-title,
.bg-dark h2 {
  color: var(--white);
}

.bg-dark .section-subtitle,
.bg-dark p {
  color: var(--border);
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feature-item {
  flex: 0 1 280px;
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
}

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

.bg-dark .feature-item h3 {
  color: var(--white);
}

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

.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}

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

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

.form-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.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(--light);
  padding: 60px 0 30px;
}

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

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

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

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

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

.footer-col a {
  color: var(--border);
  transition: color 0.3s;
}

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

.footer-col p {
  color: var(--border);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-bottom p {
  color: var(--gray);
  font-size: 14px;
}

.disclaimer {
  background-color: var(--light);
  padding: 30px;
  margin-top: 40px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

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

.cookie-content p {
  flex: 1;
  font-size: 14px;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

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

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

.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

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

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

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

.content-section h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 22px;
  color: var(--primary);
  margin: 30px 0 15px;
}

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

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

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

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  flex: 1 1 300px;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-item p {
  color: var(--gray);
  margin-bottom: 5px;
}

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

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

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

.thanks-container p {
  font-size: 18px;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 30px;
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  flex: 0 1 300px;
  text-align: center;
}

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

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

.team-member h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 5px;
}

.team-member p {
  color: var(--gray);
  font-size: 14px;
}

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

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

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

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

  .header-inner {
    padding: 15px;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
  }

  nav ul.active {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

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

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

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