:root {
  --primary: #1a3d3a;
  --primary-light: #2d5f5b;
  --accent: #ffc107;
  --accent-dark: #ffb300;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --white: #ffffff;
}

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

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

html,
body {
  height: 100%;
}

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

a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary) !important;
}

.brand-logo {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  font-weight: 700;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

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

.btn-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary);
  font-weight: 600;
}

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

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

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

.card-title {
  color: var(--primary);
  font-weight: 600;
}

.service-card {
  background-color: var(--white);
  border: 2px solid var(--accent);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.process-step {
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto;
}

.cta-final {
  background-color: var(--primary);
}

.bg-dark {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-50:hover {
  color: var(--accent) !important;
}

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

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-banner.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-content p {
  margin: 0;
  color: var(--white);
}

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

.thank-you-container {
  padding: 3rem 0;
}

form .form-group label {
  color: var(--text-dark);
  font-weight: 500;
}

form .form-control {
  border-color: var(--border-color);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-check-label {
  color: var(--text-light);
}

.list-unstyled li {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.15);
  border-color: var(--accent);
  color: var(--primary);
}

footer {
  margin-top: 5rem;
}

footer h5 {
  color: var(--white);
  font-weight: 600;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: var(--accent) !important;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero {
    height: 350px;
  }

  .cookie-banner.active {
    flex-direction: column;
  }

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

  .cookie-content p {
    text-align: center;
  }

  .col-md-6,
  .col-md-4,
  .col-md-8 {
    margin-bottom: 1rem;
  }

  .text-right {
    text-align: left !important;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .hero {
    height: 280px;
  }
}
