* {
  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: #333;
  background-color: #fff;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #0066cc;
}

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

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

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

.section-light {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-white {
  padding: 80px 0;
  background-color: #fff;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

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

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

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

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #555;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
}

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

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px 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 8px 15px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

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

.service-content p {
  color: #555;
  margin-bottom: 1.5rem;
}

.audience-card {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #0066cc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.audience-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.audience-card p {
  color: #555;
}

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

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 0;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: #fff;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

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

.btn-outline-primary:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

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

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

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

.footer-contact {
  color: #ccc;
  line-height: 1.8;
}

.footer-divider {
  border-top: 1px solid #333;
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #999;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #0066cc;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

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

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: #fff;
  text-align: center;
}

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

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.service-detail {
  margin-bottom: 3rem;
}

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

.service-includes li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
}

.service-includes li:before {
  content: "●";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-size: 1.2rem;
}

.contact-info-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

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

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #555;
  margin: 0;
}

.contact-item a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #0052a3;
  text-decoration: underline;
}

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

.faq-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.faq-card p {
  color: #555;
  margin: 0;
}

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

.thank-you-content {
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.thank-you-message {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.thank-you-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.thank-you-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

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

.next-steps li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
}

.next-steps li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.explore-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.explore-card p {
  color: #555;
  margin-bottom: 1.5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.legal-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.legal-content ul li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-content a {
  color: #0066cc;
  text-decoration: none;
}

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

.cookie-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #ddd;
}

.cookie-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #1a1a1a;
}

.cookie-table td {
  color: #555;
}

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

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.value-card p {
  color: #555;
}

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

.approach-list li {
  padding: 0.75rem 0;
  color: #555;
  line-height: 1.8;
}

.approach-list strong {
  color: #0066cc;
}

.reason-card {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #0066cc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.reason-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.reason-card p {
  color: #555;
}

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

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

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

  .cta-title {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }

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

  .cookie-buttons {
    justify-content: center;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
