:root {
  --primary-color: #0052cc;
  --primary-light: #e8f0ff;
  --primary-dark: #003d99;
  --secondary-color: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --border-color: #e0e0e0;
  --bg-light: #f8f9fa;
  --bg-footer: #2c2c2c;
  --accent-success: #28a745;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--secondary-color);
}

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

a:hover {
  color: var(--primary-dark);
}

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

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

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

.lead {
  font-size: 1.25rem;
  color: var(--text-light);
}

ul,
ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li,
ol li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.navbar-custom {
  background-color: var(--secondary-color);
  border-bottom: 2px solid var(--border-color);
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 8px;
  font-weight: 700;
}

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

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

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

.hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.1);
}

.btn {
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

.btn-secondary:hover {
  background-color: #218838;
  color: var(--secondary-color);
}

.btn-outline-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.btn-outline-secondary:hover {
  background-color: var(--bg-light);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.features-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.feature-card {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cta-section {
  padding: 80px 0;
  background-color: var(--primary-light);
  text-align: center;
}

.cta-section .section-title {
  margin-bottom: 1rem;
}

.cta-section .lead {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
  border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

.contact-info-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.contact-info-item {
  padding: 1.5rem;
  background-color: var(--secondary-color);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

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

.contact-info-item p {
  margin-bottom: 0;
}

.contact-form {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

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

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 82, 204, 0.15);
  outline: none;
}

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

.form-check-label a {
  color: var(--primary-color);
}

.rounded-lg {
  border-radius: 12px;
}

.values-list {
  list-style: none;
  margin-left: 0;
}

.values-list li {
  padding: 0.75rem 0;
  color: var(--text-light);
}

.service-features {
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.service-features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 4rem 0;
}

.min-vh-100 {
  min-height: 100vh;
}

.thank-you-section {
  padding: 60px 0;
}

.thank-you-card {
  background-color: var(--primary-light);
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--accent-success);
  font-weight: 700;
  margin-bottom: 1rem;
}

.thank-you-card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.thank-you-card p {
  margin-bottom: 0.5rem;
}

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

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 2rem;
}

.legal-content h4 {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.cookie-banner {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1020;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--secondary-color);
}

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

.footer {
  background-color: var(--bg-footer);
  color: var(--secondary-color);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.footer a {
  color: #b8b8b8;
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.text-muted {
  color: var(--text-muted);
}

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

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

.text-balance {
  text-wrap: balance;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.small {
  font-size: 0.875rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

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

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

  .thank-you-card {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .page-header {
    padding: 40px 0;
  }

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