:root {
  --primary-color: #8b2635;
  --primary-dark: #6b1a28;
  --primary-light: #a63d4d;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --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;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

.header-main {
  box-shadow: 0 2px 4px var(--shadow);
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 38, 53, 0.85), rgba(107, 26, 40, 0.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 3rem 0;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0;
  opacity: 0.95;
}

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

.content-section h3 {
  color: var(--primary-color);
  font-weight: 600;
}

.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 8px var(--shadow);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.footer-main {
  margin-top: 4rem;
}

.footer-main h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-main a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-main a:hover {
  color: var(--white) !important;
}

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

.cookie-consent.hidden {
  display: none;
}

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

.cookie-consent .btn-light {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
}

.cookie-consent .btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  font-weight: 600;
}

.cookie-consent .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

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

.legal-content h3 {
  color: var(--primary-light);
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.testimonials-section .card {
  border: none;
}

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

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: var(--white);
}

.cta-section h3 {
  color: var(--white);
}

.cta-section .btn-primary {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--primary-color);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #28a745;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
}

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

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

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

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

  .hero-section {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .cookie-consent .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}
