:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --success-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 64, 175, 0.95);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-brand strong {
  color: var(--primary-color);
}

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

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

.hero-section {
  position: relative;
  margin-top: -1px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 64, 175, 0.8), rgba(37, 99, 235, 0.6));
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
}

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

.hero-content .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.why-card,
.info-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.icon-lg {
  font-size: 3rem;
  color: var(--success-color);
}

.service-card img {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

.service-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.consultation-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.consultation-list li:last-child {
  border-bottom: none;
}

.consultation-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.benefit-number {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-item p {
  margin: 0;
}

.testimonial-card {
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.faq-section .card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.faq-section .card-header {
  background-color: white;
  border-bottom: 1px solid var(--border-color);
}

.faq-section .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

.faq-section .btn-link:hover {
  color: var(--primary-color);
}

.cta-section {
  background-color: var(--primary-color);
}

.page-header {
  padding: 3rem 0;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.contact-info .info-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.thank-you-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.success-icon {
  display: flex;
  justify-content: center;
}

.icon-checkmark {
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
}

.policy-section {
  min-height: 60vh;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.policy-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.approach-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.footer-main {
  margin-top: 4rem;
}

.footer-main h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-main a {
  transition: opacity 0.3s ease;
}

.footer-main a:hover {
  opacity: 0.8;
}

.footer-main ul {
  padding-left: 0;
}

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

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

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

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

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
