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

:root {
  --primary-red: #c41e3a;
  --dark-bg: #1a1a1a;
  --text-dark: #333333;
  --text-light: #ffffff;
  --light-gray: #f5f5f5;
  --border-light: #e0e0e0;
  --accent-red: #d9271f;
}

html,
body {
  margin: 0;
  padding: 0;
}

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(--text-light);
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar {
  background-color: var(--dark-bg) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand strong {
  color: var(--primary-red);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light) !important;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
}

.hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-light);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.page-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
  color: var(--text-light);
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 0;
}

.page-header h1 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0;
}

.btn-primary-red {
  background-color: var(--primary-red);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-red:hover {
  background-color: var(--accent-red);
  color: var(--text-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

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

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

.btn-outline-dark {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
}

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

.bg-dark {
  background-color: var(--dark-bg) !important;
}

.text-white {
  color: var(--text-light);
}

.text-light {
  color: #ccc;
}

.text-accent {
  color: var(--primary-red);
}

.text-md-right {
  text-align: right;
}

.why-card,
.benefit-card,
.testimonial-card,
.value-card,
.contact-info-box,
.process-card {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover,
.benefit-card:hover,
.value-card:hover {
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.15);
  border-color: var(--primary-red);
  transform: translateY(-5px);
}

.why-card h4,
.benefit-card h5,
.value-card h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-weight: 700;
}

.testimonial-card {
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary-red);
}

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

.testimonial-card strong {
  display: block;
  color: var(--primary-red);
  margin-top: 1rem;
  font-weight: 700;
}

.testimonial-card small {
  display: block;
  color: #666;
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.benefit-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.benefit-list-item .checkmark {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-list-item p {
  margin: 0;
  line-height: 1.6;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  width: 100%;
  transition: color 0.3s ease;
}

.faq-toggle:hover {
  color: var(--primary-red);
}

.faq-content {
  display: none;
  margin-top: 1rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary-red);
}

.faq-content.active {
  display: block;
}

.faq-content p {
  color: #555;
  line-height: 1.8;
}

.services-preview {
  align-items: center;
}

.services-list h4 {
  color: var(--primary-red);
  margin-top: 1.5rem;
}

.services-list h4:first-child {
  margin-top: 0;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
}

.process-card {
  background-color: var(--light-gray);
  text-align: center;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.process-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-section {
  padding: 4rem 2rem;
  background-color: var(--dark-bg);
  text-align: center;
}

.cta-section h2 {
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #ccc;
  font-size: 1.1rem;
}

.contact-info-box {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.contact-info-box:hover {
  border-color: var(--primary-red);
}

.contact-info-box h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-form {
  background: var(--text-light);
}

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

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

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

.form-check-label {
  margin-left: 0.5rem;
}

.form-check-label a {
  color: var(--primary-red);
}

.thank-you-box {
  background: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--primary-red);
  text-align: center;
}

.thank-you-box h1 {
  color: var(--primary-red);
  font-size: 2.5rem;
}

.cookie-banner {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 1.5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 0;
  font-size: 0.95rem;
  flex: 1;
  min-width: 250px;
}

.cookie-content p a {
  color: var(--primary-red);
}

.btn-accept {
  background-color: var(--primary-red);
  color: var(--text-light);
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept:hover {
  background-color: var(--accent-red);
  transform: translateY(-2px);
}

footer {
  background-color: var(--dark-bg) !important;
  color: var(--text-light);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

footer h5 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

footer a {
  color: #ccc;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-red);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer hr {
  border-top: 1px solid #444;
  margin: 2rem 0;
}

footer .small {
  font-size: 0.9rem;
  color: #999;
}

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

.rounded {
  border-radius: 8px;
}

.text-center {
  text-align: center;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.info-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--border-light);
}

.info-card h4 {
  color: var(--primary-red);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.info-card a {
  color: var(--primary-red);
  font-weight: 600;
}

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

  h2 {
    font-size: 1.5rem;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

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

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

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

  .navbar-dark .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .hero {
    height: 350px;
  }

  .container {
    padding: 0 10px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-accept {
    width: 100%;
  }

  footer .row {
    text-align: center;
  }

  footer .col-md-6:first-child {
    margin-bottom: 1.5rem;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .text-md-right {
    text-align: center;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

  .hero-content p {
    font-size: 0.95rem;
  }

  .page-header {
    padding: 2rem 1rem;
  }

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

  .btn-primary-red,
  .btn-outline-red,
  .btn-outline-dark {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

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

  .why-card,
  .benefit-card,
  .testimonial-card,
  .value-card,
  .contact-info-box,
  .process-card {
    padding: 1.5rem;
  }

  .process-number {
    font-size: 2rem;
  }

  .service-list {
    padding-left: 0;
  }

  .service-list li {
    padding-left: 1.25rem;
  }

  footer {
    padding: 2rem 1rem;
  }

  footer h5 {
    margin-top: 1rem;
  }

  .cta-section {
    padding: 2.5rem 1rem;
  }

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

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-content {
    gap: 0.75rem;
  }

  .cookie-content p {
    font-size: 0.85rem;
  }

  .btn-accept {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
