:root {
  --primary-color: #8b1a1a;
  --primary-dark: #6b0f0f;
  --secondary-color: #2c2c2c;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #6a6a6a;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --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-primary);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px var(--shadow);
}

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

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

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

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

.hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--text-primary) 100%);
  color: var(--bg-white);
  padding: 120px 0 80px;
  background-image: url("../images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px var(--shadow);
}

.info-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-box {
  padding: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-box {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  text-align: center;
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.3);
}

.btn-light {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

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

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

.rounded {
  border-radius: 8px;
}

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 26, 26, 0.25);
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.site-footer {
  background-color: var(--secondary-color);
  color: var(--bg-light);
  padding: 60px 0 30px;
}

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

.footer-text {
  color: var(--bg-light);
  line-height: 1.6;
  opacity: 0.9;
}

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

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

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

.footer-links a:hover {
  color: var(--bg-white);
  opacity: 1;
}

.footer-contact {
  color: var(--bg-light);
  line-height: 1.8;
  opacity: 0.9;
}

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

.footer-copyright {
  color: var(--bg-light);
  margin: 0;
  opacity: 0.8;
}

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

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

.footer-legal a:hover {
  opacity: 1;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px var(--shadow);
  z-index: 9999;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--bg-white);
  text-decoration: underline;
}

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

.legal-page {
  padding: 60px 0;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-page h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.legal-page h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-page ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.legal-last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero-description {
  font-size: 1.25rem;
  opacity: 0.95;
}

.mission-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px var(--shadow);
}

.mission-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.value-card {
  padding: 2rem;
  height: 100%;
}

.value-card-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.value-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.content-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.disclaimer-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  height: 100%;
}

.disclaimer-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.disclaimer-list li {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.disclaimer-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.benefit-card {
  text-align: center;
  padding: 1.5rem;
}

.benefit-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefit-card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form {
  margin-top: 2rem;
}

.contact-info-box {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-info-value a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--primary-color);
}

.contact-note {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.contact-note-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-note-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.expectation-card {
  text-align: center;
  padding: 1.5rem;
}

.expectation-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.expectation-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.expectation-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.thank-you-section {
  padding: 100px 0 80px;
  background: var(--bg-light);
}

.thank-you-content {
  background: var(--bg-white);
  padding: 4rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.thank-you-icon {
  margin-bottom: 2rem;
}

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

.thank-you-message {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.thank-you-submessage {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.next-step-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  height: 100%;
}

.next-step-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.next-step-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.reminder-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
}

.reminder-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.reminder-text {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.reminder-text:last-child {
  margin-bottom: 0;
}

.reminder-text a {
  color: var(--bg-white);
  text-decoration: underline;
  font-weight: 600;
}

.reminder-text a:hover {
  opacity: 0.8;
}

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

  .hero-description {
    font-size: 1.125rem;
  }

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

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

@media (max-width: 767px) {
  .hero-section {
    padding: 80px 0 60px;
  }

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

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

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

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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