:root {
  --gradient-bg-primary: linear-gradient(135deg, #f5ebe0 0%, #fdf8f3 50%, #e8d4f8 100%);
  --gradient-bg-secondary: linear-gradient(120deg, #d4c5f9 0%, #a8c5e8 100%);
  --gradient-button: linear-gradient(90deg, #ff7f50 0%, #ff6b6b 100%);
  --color-primary: #8b1538;
  --color-accent: #ff6b85;
  --color-text: #2d2d2d;
  --color-text-light: #5a5a5a;
  --color-white: #ffffff;
  --color-cream: #fdf8f3;
  --border-radius: 30px;
  --border-radius-lg: 50px;
  --shadow-soft: 0 10px 30px rgba(139, 21, 56, 0.1);
  --shadow-hover: 0 15px 40px rgba(139, 21, 56, 0.15);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--gradient-bg-primary);
  overflow-x: hidden;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  margin: 0 15px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-button);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.btn-gradient {
  background: var(--gradient-button);
  color: var(--color-white);
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  color: var(--color-white);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-bg-primary);
}

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

.hero-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--color-text-light);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-bg-secondary);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-soft);
}

.bubble-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.bubble-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.card-bubble {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: none;
}

.card-bubble:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-bubble h3 {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-bubble p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

.floating-bubble {
  background: var(--gradient-bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
}

.floating-bubble h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.floating-bubble p {
  line-height: 1.8;
  margin: 0;
}

.quote-block {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(255, 107, 133, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 30px 0;
  font-style: italic;
  color: var(--color-text);
}

.quote-author {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 15px;
  font-style: normal;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

.testimonial {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-primary);
}

footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.8;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.form-control {
  border-radius: var(--border-radius);
  border: 2px solid #e0e0e0;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.1);
}

textarea.form-control {
  min-height: 150px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 45, 45, 0.98);
  color: var(--color-white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--gradient-button);
  color: var(--color-white);
}

.btn-accept:hover {
  transform: scale(1.05);
}

.btn-settings {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-settings:hover {
  background: var(--color-white);
  color: var(--color-text);
}

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

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .bubble {
    opacity: 0.3;
  }

  .bubble-1 {
    width: 100px;
    height: 100px;
  }

  .bubble-2 {
    width: 80px;
    height: 80px;
  }

  .bubble-3,
  .bubble-4 {
    display: none;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 40px 0;
  }

  .card-bubble {
    padding: 20px;
  }

  .floating-bubble {
    padding: 25px;
  }

  footer {
    padding: 40px 0 20px;
  }
}
