:root {
  --primary-color: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #14b8a6;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-lighter: #f3f4f6;
  --border-color: #e5e7eb;
}

* {
  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-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1,
h2,
h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

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

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

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .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;
}

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

.disclaimer-badge {
  display: inline-block;
  background-color: var(--bg-lighter);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

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

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

.info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.info-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.info-card img {
  margin-bottom: 1rem;
}

.bg-light .info-card {
  background: var(--bg-white);
}

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

.disclaimer-box h2,
.disclaimer-box h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  margin-bottom: 0.75rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

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

.rounded-lg {
  border-radius: 1rem !important;
}

.shadow {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.contact-info {
  margin-bottom: 2rem;
}

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

.contact-item h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

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

.thank-you-content {
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 1rem;
}

.policy-content {
  background: var(--bg-white);
}

.policy-content h2 {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  margin-top: 1.5rem;
  color: var(--text-dark);
}

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

.policy-content ul li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

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

.footer-section h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: var(--bg-lighter);
  opacity: 0.8;
}

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

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

.footer-links a {
  color: var(--bg-lighter);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

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

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

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

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

  .hero-section img {
    margin-top: 2rem;
  }

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

  .info-card {
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

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

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

  .footer-section .col-md-4 {
    margin-bottom: 2rem;
  }

  .cookie-banner .text-right {
    text-align: center !important;
    margin-top: 1rem;
  }

  .contact-form {
    margin-top: 2rem;
  }
}
