:root {
  --primary-color: #d81b60;
  --primary-dark: #ad1457;
  --primary-light: #f06292;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

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

.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  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: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.75rem 2rem;
  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(216, 27, 96, 0.3);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(33, 37, 41, 0.8) 0%, rgba(216, 27, 96, 0.6) 100%);
  display: flex;
  align-items: center;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 5rem 0 3rem;
  margin-bottom: 0;
}

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.accordion .card {
  border: 1px solid #dee2e6;
  margin-bottom: 0.5rem;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  text-align: left;
  padding: 1rem;
}

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

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

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-light) !important;
  text-decoration: none;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

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

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

.cookie-banner a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-banner .btn {
  font-weight: 500;
}

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

.alert-info {
  background-color: #e3f2fd;
  border-color: #90caf9;
  color: #0d47a1;
}

.alert-warning {
  background-color: #fff3e0;
  border-color: #ffb74d;
  color: #e65100;
}

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

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 3rem 0 2rem;
  }

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

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 992px) {
  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }
}
