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

:root {
  --mint: #7fffd4;
  --turquoise: #40e0d0;
  --lemon: #fffacd;
  --fuchsia: #ff1493;
  --coral: #ff6b6b;
  --gold: #ffd700;
  --dark-blue: #2c3e50;
  --gray: #95a5a6;
  --light-bg: #f8f9fa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark-blue);
  overflow-x: hidden;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--mint) 0%, var(--turquoise) 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, var(--fuchsia) 0%, var(--coral) 100%);
}

.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(127, 255, 212, 0.8) 0%, rgba(64, 224, 208, 0.8) 100%);
  z-index: 1;
}

.gradient-overlay-dark::before {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(44, 62, 80, 0.5) 100%);
}

.gradient-overlay > * {
  position: relative;
  z-index: 2;
}

.navbar {
  background: linear-gradient(135deg, var(--mint) 0%, var(--turquoise) 100%) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue) !important;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  color: var(--dark-blue) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--fuchsia) !important;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero-content {
  padding: 4rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, white 0%, var(--lemon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--fuchsia) 0%, var(--coral) 100%);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.btn-primary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
  color: white;
}

.btn-outline-custom {
  border: 2px solid var(--turquoise);
  color: var(--dark-blue);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: white;
}

.btn-outline-custom:hover {
  background: linear-gradient(135deg, var(--mint) 0%, var(--turquoise) 100%);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}

.section-diagonal {
  position: relative;
  padding: 6rem 0;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  margin: 3rem 0;
}

.section-slanted {
  position: relative;
  padding: 6rem 0;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--fuchsia) 0%, var(--gold) 100%);
}

.card-offset {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

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

.card-offset-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-offset-body {
  padding: 2rem;
}

.card-offset-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-layering {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.card-layering::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  right: -10px;
  height: 100%;
  background: linear-gradient(135deg, rgba(127, 255, 212, 0.3) 0%, rgba(64, 224, 208, 0.3) 100%);
  border-radius: 15px;
  z-index: -1;
  transition: all 0.3s ease;
}

.card-layering:hover::before {
  top: -15px;
  left: 15px;
}

.quote-block {
  background: linear-gradient(135deg, var(--mint) 0%, var(--turquoise) 100%);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.quote-text {
  font-size: 1.3rem;
  font-style: italic;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.quote-author {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.footer-gradient {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--turquoise) 100%);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-gradient a:hover {
  color: var(--gold);
}

.accordion-custom .card {
  border: none;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-custom .card-header {
  background: linear-gradient(135deg, var(--mint) 0%, var(--turquoise) 100%);
  border: none;
  padding: 0;
}

.accordion-custom .btn-link {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

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

.form-control:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 0.2rem rgba(64, 224, 208, 0.25);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, rgba(44, 62, 80, 0.98) 100%);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

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

.cookie-banner .btn {
  margin: 0 0.5rem;
}

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

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

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

  .section-diagonal,
  .section-slanted {
    clip-path: none;
  }

  .hero-section {
    clip-path: none;
  }

  .card-offset-body {
    padding: 1.5rem;
  }

  .quote-block {
    padding: 2rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .cookie-banner .btn {
    margin: 0.5rem 0.25rem;
    font-size: 0.9rem;
  }
}

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

  .section-title {
    font-size: 1.8rem;
  }
}

.policy-content {
  padding: 4rem 0;
}

.policy-content h1 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: linear-gradient(135deg, var(--mint) 0%, var(--turquoise) 100%);
  padding: 3rem;
  border-radius: 20px;
  color: white;
  height: 100%;
}

.contact-info h3 {
  color: white;
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
