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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3rem;
}

.why-section,
.benefits-section,
.services-preview,
.target-audience,
.testimonials-section {
  padding: 4rem 0;
}

.feature-card,
.service-card {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3,
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 1rem;
}

.benefit-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.service-card img {
  margin-bottom: 1.5rem;
}

.audience-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.audience-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 0.5rem;
}

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

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #1a1a1a;
  font-size: 1rem;
}

.testimonial-author span {
  color: #777;
  font-size: 0.9rem;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
  color: #0066cc;
  border-color: #0066cc;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #fff;
}

.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer p,
.footer a {
  color: #ccc;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #0066cc;
  text-decoration: none;
}

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
}

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  margin-bottom: 3rem;
}

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

.about-content,
.services-detail {
  padding: 2rem 0;
}

.about-content h2,
.services-detail h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 1rem;
}

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

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 1rem;
}

.about-info {
  padding: 3rem 0;
}

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

.info-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
}

.contact-info-section {
  padding: 3rem 0;
  background-color: #f8f9fa;
}

.service-row {
  padding: 2rem 0;
}

.service-row h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.service-row ul {
  padding-left: 1.5rem;
}

.service-process {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

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

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.contact-info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 1rem;
}

.contact-hours,
.contact-note {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-hours h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 1rem;
}

.next-steps h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.step-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

.step-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 0.5rem;
}

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

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0066cc;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #fff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  padding-right: 2rem;
  flex: 1;
}

.cookie-content a {
  color: #0066cc;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

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

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
