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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-section p {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 300;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  color: #0066cc !important;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.15) !important;
}

.card img {
  height: 250px;
  object-fit: cover;
}

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

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

.btn-outline-primary {
  color: #0066cc;
  border-color: #0066cc;
  font-weight: 600;
}

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

.feature-box {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: #e8f0f8;
  box-shadow: 0 4px 8px rgba(0, 102, 204, 0.1);
}

.feature-box h5 {
  color: #0066cc;
  font-weight: 700;
}

footer {
  background-color: #1a1a1a !important;
  margin-top: 4rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0066cc !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #0066cc;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: -0.3px;
}

p {
  color: #333333;
  font-size: 1rem;
}

.text-muted {
  color: #666666 !important;
}

.alert-success {
  background-color: #e8f5e9;
  border-color: #4caf50;
  color: #1b5e20;
}

.alert-info {
  background-color: #e3f2fd;
  border-color: #2196f3;
  color: #0d47a1;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .card img {
    height: 200px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .navbar-collapse {
    margin-top: 1rem;
  }

  footer .row {
    margin-bottom: 1.5rem;
  }

  footer .col-md-3 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 300px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .card {
    margin-bottom: 1rem;
  }

  .card img {
    height: 180px;
  }
}
