:root {
  --primary-color: #8b1538;
  --primary-dark: #6b0f28;
  --secondary-color: #2c2c2c;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --text-dark: #212529;
  --text-light: #6c757d;
}

* {
  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;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
}

.brand-name {
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

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

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.8) 0%, rgba(44, 44, 44, 0.6) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

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

.page-header {
  padding: 4rem 0 3rem;
  background: var(--light-gray);
}

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

.section-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

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

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

.testimonials-section {
  padding: 5rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

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

.faq-section {
  padding: 5rem 0;
}

.faq-item {
  margin-bottom: 2.5rem;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
}

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

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

.contact-item h5 {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
}

.contact-form-wrapper {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 8px;
}

.form-control {
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
}

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

.footer {
  padding: 3rem 0 1rem;
}

.footer h5,
.footer h6 {
  color: white;
  font-weight: 600;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

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

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

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

@media (max-width: 991px) {
  .hero-section {
    height: 70vh;
  }

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

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

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

@media (max-width: 767px) {
  .hero-section {
    height: 60vh;
  }

  .section-text {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
