:root {
  --primary-color: #0066cc;
  --dark-bg: #1a1a1a;
  --light-bg: #f5f7fa;
  --light-blue: #e8f2ff;
  --text-dark: #333333;
  --text-muted: #666666;
  --border-color: #e0e0e0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 600;
}

.navbar-dark {
  background-color: var(--dark-bg) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.brand-letter {
  color: var(--primary-color);
  font-weight: 700;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
}

.hero {
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #004d99 100%);
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004d99 100%);
  color: white;
}

.page-header h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.bg-light-bg {
  background-color: var(--light-bg);
  border-radius: 8px;
}

.bg-light-blue {
  background-color: var(--light-blue);
  border-radius: 8px;
  border: 1px solid #d0e4f7;
}

.bg-dark {
  background-color: var(--dark-bg) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.info-card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
  transform: translateY(-5px);
}

.service-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  background: white;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
  transform: translateY(-8px);
}

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

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

.contact-info h5 {
  color: var(--primary-color);
}

.thank-you-content {
  padding: 2rem;
}

.success-icon {
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner {
  background-color: var(--dark-bg);
  color: white;
  padding: 1.5rem 0;
  border-top: 3px solid var(--primary-color);
  margin-top: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

.cookie-banner .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.cookie-banner .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cookie-banner .btn-link {
  text-decoration: none;
  color: var(--primary-color);
}

.cookie-banner .btn-link:hover {
  text-decoration: underline;
}

.list-unstyled li a {
  transition: color 0.3s ease;
}

.list-unstyled li a:hover {
  color: var(--primary-color) !important;
}

footer {
  background-color: var(--dark-bg) !important;
  margin-top: 3rem;
}

footer h5,
footer h6 {
  color: white;
}

footer .text-primary {
  color: var(--primary-color) !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-none:hover {
  text-decoration: underline !important;
}

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

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

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

  .service-image {
    height: 250px;
  }

  .cookie-banner .row {
    flex-direction: column;
  }

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

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

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

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

  .btn-lg {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}
