:root {
  --primary: #1a4f6e;
  --primary-dark: #0d3a54;
  --secondary: #e8a54b;
  --accent: #3a8fb7;
  --text: #2d3436;
  --text-light: #636e72;
  --bg-light: #f8f9fa;
  --bg-alt: #eef2f5;
  --white: #ffffff;
  --border: #dfe6e9;
  --shadow: rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --transition: 0.3s ease;
}

* {
  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.6;
  color: var(--text);
  background-color: 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;
}

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

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

.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(--secondary);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
  padding: 8px 0;
}

.nav a:hover {
  color: var(--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(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--white);
  padding: 60px 0;
}

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

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

.btn-primary:hover {
  background-color: #d4942f;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.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: 80px 0;
}

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

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

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

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

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

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

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

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-img {
  height: 200px;
  background-color: var(--bg-alt);
  overflow: hidden;
}

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

.service-content {
  padding: 25px;
}

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

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

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

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

.features-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.features-row.reverse {
  flex-direction: row-reverse;
}

.features-text {
  flex: 1 1 400px;
}

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

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

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

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

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

.features-image {
  flex: 1 1 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--bg-alt);
  min-height: 350px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px var(--shadow);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
}

.testimonial-info strong {
  display: block;
  color: var(--primary);
}

.testimonial-info span {
  font-size: 14px;
  color: var(--text-light);
}

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

.cta-section h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-section {
  max-width: 700px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 79, 110, 0.1);
}

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

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text);
}

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

.contact-form-wrap {
  flex: 1 1 400px;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
}

.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1 1 450px;
}

.about-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.about-image {
  flex: 1 1 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--bg-alt);
  min-height: 400px;
}

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

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 5px;
}

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

.value-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 5px 15px var(--shadow);
}

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

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

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

.footer {
  background-color: var(--primary-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;
}

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

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

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

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

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

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

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

.legal-content {
  padding: 60px 0;
  min-height: 60vh;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--primary);
}

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

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

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

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

.thanks-section {
  min-height: 70vh;
  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-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 50px;
  color: var(--white);
}

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

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

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

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text-light);
}

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

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

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

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

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

.cookie-reject {
  background-color: var(--bg-alt);
  color: var(--text);
}

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

.disclaimer {
  background-color: var(--bg-alt);
  padding: 25px;
  border-radius: var(--radius);
  margin-top: 40px;
  border-left: 4px solid var(--secondary);
}

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px var(--shadow);
    transition: right var(--transition);
    gap: 10px;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

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

  .hero p {
    font-size: 17px;
  }

  .section {
    padding: 50px 0;
  }

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

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 100%;
  }
}
