:root {
  --primary-color: #f06292;
  --primary-hover: #ec407a;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #fef5f8;
  --white: #ffffff;
  --border-radius: 8px;
}

* {
  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;
  overflow-x: hidden;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 1rem 0;
}

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

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

.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-hover));
  border: none;
  border-radius: var(--border-radius);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 98, 146, 0.3);
  background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
}

.btn-cta {
  font-size: 0.95rem;
}

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

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

.hero-text {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-hero {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

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

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

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
}

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

.content-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.rounded-img {
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
}

.limits-list {
  list-style: none;
  padding: 0;
}

.limits-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

.limits-list li:before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.contact-disclaimer {
  background: #fff3e0;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.contact-disclaimer p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-control {
  padding: 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(240, 98, 146, 0.15);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  display: none;
}

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

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

.contact-info {
  text-align: center;
}

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

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer p {
  margin: 0;
  color: var(--white);
}

.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(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

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

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

.cookie-buttons .btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-accept:hover {
  background: var(--primary-hover);
}

.btn-reject {
  background: #e0e0e0;
  color: var(--text-dark);
  border: none;
}

.btn-reject:hover {
  background: #d0d0d0;
}

.btn-configure {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-configure:hover {
  background: var(--text-dark);
  color: var(--white);
}

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

  .hero-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

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

  .cookie-content {
    flex-direction: column;
  }

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

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