:root {
  --primary-color: #c44d4d;
  --primary-dark: #a63939;
  --primary-light: #d67272;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #7a7a7a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-lighter: #fafbfc;
  --border-color: #e5e5e5;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
}

.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

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

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

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

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--bg-lighter);
}

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

.page-header h1 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.page-header .lead {
  color: var(--bg-lighter);
  font-size: 1.1rem;
}

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

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

.section-intro {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.bg-light .feature-card {
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-top: 1rem;
}

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

.custom-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-medium);
}

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

.disclaimer-box {
  background-color: var(--bg-lighter);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box strong {
  color: var(--primary-color);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-item {
  padding: 1.5rem;
  background-color: var(--bg-lighter);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.info-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

.testimonial-card p:first-child {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

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

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

.faq-item {
  background-color: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: var(--bg-lighter);
  margin-bottom: 2rem;
}

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

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(196, 77, 77, 0.1);
}

.contact-info {
  background-color: var(--bg-lighter);
  padding: 2rem;
  border-radius: 8px;
}

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

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

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.info-box {
  background-color: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 8px;
}

.info-box h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

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

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

.legal-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

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

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

.commitment-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.commitment-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.site-footer {
  background-color: var(--text-dark);
  color: var(--bg-lighter);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h5 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.site-footer p {
  color: var(--bg-lighter);
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: var(--bg-lighter);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

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

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

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

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

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

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

  h2 {
    font-size: 1.75rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

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

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

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

.img-fluid {
  border-radius: 8px;
}

.alert-warning {
  border-left: 4px solid #ff9800;
  background-color: #fff8e1;
  border-radius: 4px;
}
