:root {
  --primary-color: #e87461;
  --secondary-color: #5ac4be;
  --accent-color: #f4a291;
  --text-dark: #2c2c2c;
  --text-medium: #5f5f5f;
  --text-light: #8a8a8a;
  --bg-white: #ffffff;
  --bg-light: #f9f7f5;
  --bg-warm: #fff9f6;
  --border-color: #e5e1dd;
}

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

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

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

.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-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 116, 97, 0.3);
  color: var(--bg-white);
}

main {
  margin-top: 76px;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-light));
}

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

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

.hero-section p {
  color: var(--text-medium);
  line-height: 1.8;
}

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

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

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

.content-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.content-section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

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

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

.rounded {
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 116, 97, 0.3);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.limits-list {
  display: grid;
  gap: 1.5rem;
}

.limit-item {
  padding: 1.5rem;
  background-color: var(--bg-warm);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.limit-item h5 {
  color: var(--primary-color);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(90, 196, 190, 0.1);
}

.form-disclaimer {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

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

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

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

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

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

.site-footer a:hover {
  color: var(--secondary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 2000;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  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: 1rem;
}

.cookie-banner .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookie-banner .btn:hover {
  transform: translateY(-2px);
}

.btn-accept {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border: none;
}

.btn-reject {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-settings {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--border-color);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .site-footer .text-md-right {
    text-align: center;
    margin-top: 1rem;
  }

  .site-footer a {
    margin: 0 0.75rem;
  }
}
