:root {
  --primary-color: #c73939;
  --primary-dark: #a32929;
  --primary-light: #e55555;
  --text-dark: #2c2c2c;
  --text-medium: #666666;
  --text-light: #999999;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #e9ecef;
  --border-color: #dee2e6;
  --shadow: 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);
}

.site-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 0;
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: var(--bg-white);
  opacity: 0.9;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--bg-white);
  font-weight: 500;
  margin-left: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(199, 57, 57, 0.85) 0%, rgba(163, 41, 41, 0.85) 100%);
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text {
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 700px;
}

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

.content-section h2 {
  font-size: 2.25rem;
  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 p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

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

.section-image {
  margin: 2rem 0;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.row img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  margin-bottom: 1.5rem;
}

.topic-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px var(--shadow);
}

.topic-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: none;
}

.topic-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.topic-card p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.disclaimer-box strong {
  color: #856404;
}

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

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

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--bg-white);
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.site-footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--bg-light);
  padding: 3rem 0 1rem;
}

.site-footer h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer p {
  color: var(--bg-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-legal a {
  color: var(--bg-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4rem 0 3rem;
  color: var(--bg-white);
}

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

.page-header .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.approach-box,
.value-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.approach-box h3,
.value-card h3 {
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.transparency-section {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px var(--shadow);
}

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

.transparency-section ul {
  margin-left: 1.5rem;
  color: var(--text-medium);
}

.transparency-section ul li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.contact-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-info p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.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 1rem;
  transition: border-color 0.3s ease;
}

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

.form-check-label {
  font-weight: 400;
}

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

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

.thank-you-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thank-you-actions {
  margin-top: 2.5rem;
}

.thank-you-actions .btn {
  margin: 0.5rem;
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

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

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.important-notice {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.important-notice h2 {
  color: var(--primary-dark);
  margin-top: 0;
}

.important-notice p {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--bg-white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  margin-bottom: 0;
  color: var(--bg-light);
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 0.625rem 1.75rem;
  font-size: 1rem;
  border-radius: 50px;
}

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

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

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

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

  .hero-section {
    height: 400px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }

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

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

  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .thank-you-content h1 {
    font-size: 1.75rem;
  }

  .thank-you-actions .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .btn-primary,
  .btn-outline-primary {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
