:root {
  --accent-color: #009b77;
  --accent-light: #e8f5f1;
  --accent-dark: #007a5e;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6b6b6b;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  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-primary);
}

h1 {
  font-size: 2.25rem;
}

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

h3 {
  font-size: 1.25rem;
}

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

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

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

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

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--accent-color);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 155, 119, 0.3);
}

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

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.page-header .lead {
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

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

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

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

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

.limitation-box h2,
.limitation-box h3 {
  color: var(--accent-dark);
  margin-top: 0;
}

.limitation-box ul {
  margin-bottom: 0;
}

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

.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(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 155, 119, 0.1);
}

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-box {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-white) 100%);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thank-you-box h1 {
  color: var(--accent-color);
}

.policy-content h2 {
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 0.5rem;
}

.table {
  margin-top: 1rem;
}

.table th {
  background-color: var(--accent-light);
  color: var(--text-primary);
  font-weight: 600;
}

.footer {
  background-color: var(--text-primary);
  color: var(--bg-white);
  padding: 3rem 0 1.5rem;
}

.footer h3 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

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

.footer .small {
  color: rgba(255, 255, 255, 0.6);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-primary);
  color: var(--bg-white);
  padding: 1rem 0;
  z-index: 1050;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.cookie-banner.hidden {
  display: none;
}

.img-fluid {
  border-radius: 12px;
}

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

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

  .hero-image {
    margin-top: 2rem;
  }

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

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

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

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

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

  .card-img-top {
    height: 160px;
  }

  .limitation-box {
    padding: 1rem;
  }

  .thank-you-box {
    padding: 2rem;
  }

  .footer {
    text-align: center;
  }

  .cookie-banner .row {
    text-align: center;
  }

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }
}
