:root {
  --primary-color: #1a4d7a;
  --primary-dark: #0f3557;
  --primary-light: #2a6ba8;
  --accent-color: #3498db;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: all 0.3s ease;
}

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

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

.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(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 77, 122, 0.85) 0%, rgba(42, 107, 168, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 100px 0 60px;
  color: var(--white);
}

.feature-box,
.info-card,
.approach-card,
.value-card,
.why-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover,
.info-card:hover,
.approach-card:hover,
.value-card:hover,
.why-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.consultation-info {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.disclaimer-box {
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 8px;
  border: 2px solid var(--primary-light);
}

.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  font-style: italic;
}

.faq-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.footer {
  margin-top: 0;
}

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

.footer a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.contact-info-box {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.location-info {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  display: inline-block;
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.btn-group-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-banner a {
  color: var(--primary-color);
  font-weight: 600;
}

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

  .hero-image img {
    height: 400px;
  }

  .page-header {
    padding: 80px 0 40px;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.625rem 1.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }

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

img {
  max-width: 100%;
  height: auto;
}
