:root {
  --primary-color: #dc3545;
  --secondary-color: #6c757d;
  --light-bg: #f8f9fa;
  --dark-text: #212529;
  --border-color: #dee2e6;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

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

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

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

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

.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(0, 0, 0, 0.7) 0%, rgba(220, 53, 69, 0.5) 100%);
}

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

.hero-content h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #c82333 100%);
  color: white;
  padding: 100px 0 60px;
  margin-top: 76px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.section-subtitle {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
}

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

.card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-img-top {
  height: 240px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

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

.feature-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

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

.info-box {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.process-steps {
  margin-top: 30px;
}

.step-item {
  display: flex;
  margin-bottom: 24px;
  align-items: start;
}

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

.step-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card,
.habit-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover,
.habit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card h5,
.habit-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.disclaimer-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  padding: 30px;
  border-radius: 8px;
}

.disclaimer-box h5 {
  color: #856404;
  font-weight: 700;
  margin-bottom: 15px;
}

.disclaimer-box ul {
  margin-bottom: 0;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

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

.faq-accordion {
  margin-top: 20px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
}

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

.cta-section h2 {
  font-weight: 700;
}

.footer {
  background-color: #212529;
  color: white;
  padding: 60px 0 30px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

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

.footer p {
  color: #adb5bd;
  margin-bottom: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-copyright {
  color: #adb5bd;
}

.footer-legal-link {
  color: #adb5bd;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

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

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-control {
  border: 2px solid var(--border-color);
  padding: 12px;
  border-radius: 6px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.contact-info-box {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.contact-info-item {
  margin-bottom: 25px;
}

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

.contact-info-item h6 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-info-item a {
  color: var(--dark-text);
  text-decoration: none;
}

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

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.thank-you-icon svg {
  animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.legal-content h3 {
  color: var(--dark-text);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content ul {
  margin-bottom: 20px;
}

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

.legal-content a:hover {
  color: #c82333;
}

.approach-card,
.why-choose-item,
.value-item,
.consultation-info .info-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.approach-card h5,
.why-choose-item h5,
.value-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.alert-box {
  background: #f8d7da;
  border: 2px solid var(--primary-color);
  padding: 25px;
  border-radius: 8px;
}

.alert-box h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
}

.warning-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
}

.warning-box h4 {
  color: #856404;
  font-weight: 700;
  margin-bottom: 15px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(33, 37, 41, 0.98);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .section {
    padding: 50px 0;
  }

  .page-hero {
    padding: 80px 0 50px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .footer-legal-link {
    margin-left: 0;
    margin-right: 15px;
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 400px;
  }

  .btn-lg {
    padding: 10px 24px;
    font-size: 1rem;
  }
}
