:root {
  --primary-color: #7dd3c0;
  --primary-dark: #5cbaa8;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
  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);
}

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

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

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f1 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.disclaimer-note {
  background-color: rgba(125, 211, 192, 0.1);
  padding: 1rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  font-size: 0.95rem;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.rounded-custom {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.info-card {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.term-box {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.term-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

.limitations-section {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.limitation-box {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #ffcccc;
  box-shadow: var(--shadow);
}

.limitation-box h2 {
  color: #d32f2f;
  margin-bottom: 1.5rem;
}

.limitation-box p {
  margin-bottom: 1rem;
}

.limitation-box strong {
  color: #d32f2f;
}

.btn-custom {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f1 100%);
  text-align: center;
}

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

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

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(125, 211, 192, 0.25);
}

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

.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer p {
  color: #bdc3c7;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.alert {
  border-radius: 8px;
  padding: 1.5rem;
}

.table {
  margin-top: 1rem;
}

.table th {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 600;
}

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

  .content-section h2 {
    font-size: 1.75rem;
  }

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

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

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

@media (max-width: 576px) {
  .cookie-banner .col-md-3 {
    margin-top: 1rem;
  }

  .cookie-banner .text-md-right {
    text-align: left !important;
  }
}
