:root {
  --primary-color: #5b2c6f;
  --primary-dark: #3d1f4a;
  --accent-color: #7b3f8f;
  --text-dark: #2c2c2c;
  --text-light: #6c6c6c;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

.navbar-brand {
  color: var(--primary-color) !important;
  font-size: 1.75rem;
}

.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);
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(91, 44, 111, 0.85), rgba(123, 63, 143, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 4rem 0;
  color: var(--white);
  margin-bottom: 2rem;
}

.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 5px 15px rgba(91, 44, 111, 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);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(91, 44, 111, 0.3);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

footer a:hover {
  color: var(--white) !important;
  text-decoration: underline;
}

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

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

.cookie-banner p {
  margin-bottom: 0.5rem;
}

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

.success-checkmark {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.success-checkmark .check-icon {
  width: 120px;
  height: 120px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid var(--primary-color);
}

.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 40px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
  left: 40px;
  width: 80px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .icon-line {
  height: 5px;
  background-color: var(--primary-color);
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .icon-line.line-tip {
  top: 56px;
  left: 21px;
  width: 30px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .icon-line.line-long {
  top: 48px;
  right: 13px;
  width: 60px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.success-checkmark .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(91, 44, 111, 0.2);
}

.success-checkmark .icon-fix {
  top: 12px;
  width: 10px;
  left: 32px;
  z-index: 1;
  height: 100px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: var(--white);
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 25px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 25px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 56px;
  }
  100% {
    width: 30px;
    left: 21px;
    top: 56px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 60px;
    right: 13px;
    top: 48px;
  }
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(91, 44, 111, 0.25);
}

.alert-info {
  background-color: rgba(91, 44, 111, 0.1);
  border-color: var(--primary-color);
  color: var(--text-dark);
}

.accordion .card-header {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

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

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

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

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }
}
