:root {
  --primary-color: #6b8a9a;
  --primary-dark: #5a7888;
  --primary-light: #8ba6b4;
  --text-color: #2d3436;
  --text-light: #636e72;
  --bg-light: #f8fafb;
  --bg-white: #ffffff;
  --border-color: #e0e6e9;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-white);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

.navbar {
  padding: 1rem 0;
  background-color: var(--bg-white) !important;
}

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

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-section h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.page-header {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  text-align: center;
}

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

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

.content-section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.info-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
  border-bottom: none;
}

.info-block h3 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

.info-block p {
  font-size: 1rem;
  line-height: 1.7;
}

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

.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.context-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, #edf2f4 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.context-box h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.context-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #edf2f4 100%);
}

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

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.footer {
  background-color: var(--text-color);
  color: var(--bg-light);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer p {
  color: #b2bec3;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b2bec3;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--bg-white);
}

.footer address {
  font-style: normal;
}

.footer address p {
  margin-bottom: 0.25rem;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

.footer .disclaimer-text {
  color: #8e9aa0;
}

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

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(107, 138, 154, 0.15);
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

.about-content h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.feature-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.thank-you-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

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

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-color);
  padding: 1rem 0;
  z-index: 1050;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  color: var(--bg-light);
  font-size: 0.95rem;
}

.cookie-content .btn {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .info-block {
    padding: 2rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 3rem 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .footer {
    padding: 3rem 0 2rem;
  }

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