:root {
  --primary-color: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #14b8a6;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --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-color);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
  color: var(--text-color);
}

h3 {
  font-size: 1.25rem;
  color: var(--text-color);
}

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

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

.navbar {
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

.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: 1rem;
}

.hero-section .disclaimer-text {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.hero-image {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.content-section img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 1rem 0;
}

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

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

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

.limitation-box h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

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

.page-header h1 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.page-header .lead {
  color: var(--text-light);
}

.thank-you-header {
  padding: 5rem 0;
}

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

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  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.2s ease;
}

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

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

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

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

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

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

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  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-color);
  margin-bottom: 0.5rem;
}

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

.policy-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  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(--primary-dark);
}

.policy-date {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-style: italic;
  color: var(--text-light);
}

.footer-section {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

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

.footer-section p {
  color: #9ca3af;
  font-size: 0.95rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: #6b7280;
  margin-top: 1rem;
}

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

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #6b7280;
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2937;
  color: var(--bg-white);
  padding: 1.25rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

.cookie-banner p {
  color: #d1d5db;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn-primary {
  padding: 0.5rem 1.5rem;
}

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

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

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

  .hero-section .col-lg-6:last-child {
    margin-top: 2rem;
  }

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

  .content-section .col-lg-6:last-child {
    margin-top: 1.5rem;
  }

  .content-section.bg-light .flex-lg-row-reverse .col-lg-6:first-child {
    margin-top: 1.5rem;
  }

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

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

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

  h2 {
    font-size: 1.5rem;
  }

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

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

  .limitation-box {
    padding: 1.25rem 1.5rem;
  }
}
