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

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

.header-main {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
}

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

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

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

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 30px;
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 30px;
}

.feature-box {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

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

.benefits-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #495057;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffc107;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.who-card,
.choose-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.who-card h4,
.choose-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: #495057;
  margin-top: 15px;
}

.cta-section {
  background-color: #212529;
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section .lead {
  color: #e9ecef;
}

.footer {
  background-color: #212529;
  color: #e9ecef;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
  color: #ffc107;
}

.page-header {
  background: linear-gradient(135deg, #212529 0%, #495057 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header .lead {
  color: #e9ecef;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.contact-info-box {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact-info-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 10px;
}

.contact-info-box a {
  color: #ffc107;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.value-box {
  text-align: center;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.value-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.process-step {
  text-align: center;
  padding: 25px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #ffc107;
  color: #212529;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ffc107;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #495057;
  margin-top: 25px;
  margin-bottom: 15px;
}

.policy-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-section li {
  margin-bottom: 10px;
  color: #495057;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #ffc107;
  text-decoration: underline;
}

.thank-you-content {
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
}

.step-box {
  text-align: center;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-num {
  width: 50px;
  height: 50px;
  background-color: #ffc107;
  color: #212529;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-reminder {
  border: 2px solid #ffc107;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

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