:root {
  --primary-color: #c41e3a;
  --dark-bg: #2c3e50;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --accent-light: #fee5e8;
}

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

html,
body {
  height: 100%;
}

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

.brand-mark {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 1.3em;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

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

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.hero-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.bg-accent {
  background: linear-gradient(135deg, var(--primary-color) 0%, #a01732 100%);
}

.section-importance {
  background-color: #ffffff;
}

.benefit-card {
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-box {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.category-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.1);
}

.category-box img {
  border-radius: 6px;
  object-fit: cover;
  height: 250px;
}

.category-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.category-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #a01732;
  text-decoration: none;
}

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

.benefit-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tip-card {
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.tip-card h5 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.testimonial-card {
  padding: 1.5rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.faq-section {
  background-color: white;
}

.card-header {
  border-bottom: none;
  background-color: transparent !important;
}

.btn-link {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
}

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

.card {
  border: none;
}

.principle-card {
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.principle-title {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.principle-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

.advantages-list li:before {
  content: "●";
  position: absolute;
  left: 0.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.contact-info {
  margin-bottom: 2rem;
}

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

.contact-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.form-control {
  border-color: var(--border-color);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.15);
}

.form-check-label {
  color: var(--text-light);
  margin-left: 0.5rem;
  font-size: 0.95rem;
}

.form-check-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a01732;
  border-color: #a01732;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.btn-outline-secondary {
  color: var(--text-dark);
  border-color: var(--border-color);
}

.btn-outline-secondary:hover {
  background-color: var(--light-bg);
  border-color: var(--text-dark);
  color: var(--text-dark);
}

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

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

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

footer {
  margin-top: auto;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-50:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 768px) {
  .hero-section {
    height: 350px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

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

  .page-title {
    font-size: 2rem;
  }

  .category-box img {
    height: 200px;
  }

  .cookie-banner {
    padding: 1rem 0;
  }

  .cookie-banner p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem !important;
  }
}
