:root {
  --primary-color: #5b9fbf;
  --primary-dark: #4a8cad;
  --secondary-color: #f5f5f0;
  --accent-warm: #e8dcc4;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --border-light: #e0e0e0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0;
}

.header-fixed .navbar {
  padding: 1rem 0;
}

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

.navbar-brand:hover {
  color: var(--primary-dark);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
  background-color: var(--text-muted);
  border: none;
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-warm) 100%);
}

.hero-section h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-section p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

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

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

.content-section p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.content-section strong {
  color: var(--primary-dark);
  font-weight: 600;
}

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

.limits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.limit-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.limit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.limit-item h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.limit-item p {
  margin-bottom: 0;
  font-size: 1rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.faq-item h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

.contact-form-wrapper {
  background: var(--secondary-color);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}

.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-light);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-disclaimer {
  background: var(--accent-warm);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.contact-details {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-details h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.closing-summary {
  text-align: center;
  padding: 2rem;
  background: var(--secondary-color);
  border-radius: 12px;
}

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 2rem 0;
  margin-top: 4rem;
}

footer a {
  color: var(--white);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.policy-section {
  padding: 140px 0 80px;
}

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

.policy-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-section h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-section ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-section li {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

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

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

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

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

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  footer a {
    display: block;
    margin: 0.5rem 0;
  }
}
