:root {
  --primary: #c2185b;
  --secondary: #4ecdc4;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --accent: #ffd93d;
  --font-heading: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-body: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: #a0134a;
  border-color: #a0134a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.3);
}

.btn-outline-primary {
  color: #0a58ca;
  border-color: #0a58ca;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a58ca;
}

.btn-outline-light:hover {
  color: var(--dark);
  transform: translateY(-2px);
}

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

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

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #495057;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-section {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 20px auto;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.img-card {
  border-radius: 15px 15px 0 0;
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.img-bg {
  background-size: cover;
  background-position: center;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 20px;
  padding: 60px;
  position: relative;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer {
  background-color: var(--dark);
  color: #fff;
}

.footer a {
  color: #ddd;
}

.footer a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 1050;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .cta-section {
    padding: 40px 20px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
}
