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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #333 !important;
}

.nav-link {
  color: #666 !important;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffc107 !important;
}

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.hero-section h1 {
  color: #333;
}

.hero-section .lead {
  color: #666;
}

.btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #333;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.benefit-box {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #ffc107;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.solution-card {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.solution-card ul li {
  padding: 8px 0;
  color: #666;
}

.testimonial-card {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.faq-item {
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.consultation-form input,
.consultation-form textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #333;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: #666;
}

.consultation-form .btn-light {
  background: #fff;
  color: #333;
  font-weight: 600;
}

.consultation-form .btn-light:hover {
  background: #f8f9fa;
}

.form-check-label a {
  color: #fff;
}

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

footer a:hover {
  color: #ffc107 !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button,
.cookie-buttons a {
  margin-bottom: 10px;
}

.contact-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.contact-info p {
  color: #666;
}

.contact-form-page input,
.contact-form-page textarea,
.contact-form-page select {
  border: 1px solid #ddd;
}

.service-box {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thank-you-section {
  padding: 120px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.thank-you-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 30px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  margin: 0 auto 30px;
}

.thank-you-info {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 30px 0;
}

.thank-you-info ul {
  margin-bottom: 0;
}

.thank-you-info ul li {
  padding: 8px 0;
  color: #666;
}

.tip-box {
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-section {
  padding: 120px 0 80px;
}

.policy-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
  color: #333;
  margin-top: 30px;
}

.policy-content h3 {
  color: #333;
  margin-top: 20px;
}

.policy-content p {
  color: #666;
}

.policy-content ul {
  color: #666;
}

.policy-content a {
  color: #ffc107;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
  }

  .benefit-box,
  .solution-card,
  .testimonial-card {
    margin-bottom: 20px;
  }
}
