:root {
  --primary-dark: #3d2066;
  --primary-light: #5a3d7a;
  --accent: #7b5aa6;
  --text-dark: #1a1a2e;
  --text-light: #4a4a5a;
  --bg-light: #f8f7fc;
  --bg-white: #ffffff;
  --border-color: #e8e6f0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: none;
}

.navbar {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark) !important;
}

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

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

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 32, 102, 0.85) 0%, rgba(90, 61, 122, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--bg-white);
  padding: 2rem;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.btn-primary {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--bg-white);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.card-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-size: 1.75rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

.faq-section .card {
  margin-bottom: 1rem;
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.faq-section .card-header {
  background-color: var(--bg-white);
  border-bottom: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
}

.faq-section .card-header h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.faq-section .card-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-section .btn-light {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
}

footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--bg-white);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.product-card .card-img-top {
  height: 250px;
}

.product-category {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.contact-info {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(61, 32, 102, 0.1);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.legal-content {
  padding: 3rem 0;
}

.legal-content h2 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner a {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
}

.image-text-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.image-text-block.reverse {
  flex-direction: row-reverse;
}

.image-text-block img {
  width: 45%;
  border-radius: 12px;
  object-fit: cover;
  height: 300px;
}

.image-text-block .content {
  flex: 1;
}

.advisor-card {
  text-align: center;
  padding: 2rem;
}

.advisor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.values-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.values-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .image-text-block {
    flex-direction: column;
    gap: 1.5rem;
  }

  .image-text-block.reverse {
    flex-direction: column;
  }

  .image-text-block img {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .page-header {
    padding: 5rem 0 3rem;
  }

  footer {
    text-align: center;
  }

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