:root {
  --primary-color: #7b2cbf;
  --primary-dark: #5a189a;
  --primary-light: #9d4edd;
  --secondary-color: #c77dff;
  --accent-color: #e0aaff;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gradient-1: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
  --bg-gradient-2: linear-gradient(135deg, #5a189a 0%, #7b2cbf 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

* {
  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.6;
  overflow-x: hidden;
}

.navbar {
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar-brand .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--bg-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.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(123, 44, 191, 0.85) 0%, rgba(90, 24, 154, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  padding: 4rem 0;
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section-gradient {
  background: var(--bg-gradient-1);
  color: var(--text-light);
}

.section-title {
  font-weight: 700;
  color: inherit;
  margin-bottom: 1.5rem;
}

.section-gradient .section-title {
  color: var(--text-light);
}

.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

.info-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.section-gradient .info-box {
  background: rgba(255, 255, 255, 0.15);
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.feature-box h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.audience-card,
.approach-card,
.value-box,
.format-box {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-gradient .audience-card,
.section-gradient .approach-card,
.section-gradient .value-box,
.section-gradient .format-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text-light);
}

.audience-card:hover,
.approach-card:hover,
.value-box:hover,
.format-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.audience-card img,
.approach-card img {
  max-height: 180px;
  object-fit: cover;
}

.consultation-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.consultation-item h5 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 auto 1rem;
  backdrop-filter: blur(10px);
}

.info-detail {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.disclaimer-box {
  background: rgba(123, 44, 191, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.section-gradient .disclaimer-box {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text-light);
  backdrop-filter: blur(10px);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section {
  background: var(--bg-gradient-2);
  color: var(--text-light);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  color: var(--text-light);
  border: 2px solid var(--text-light);
  background: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--text-light);
  color: var(--primary-color);
  border-color: var(--text-light);
}

.footer {
  background: var(--text-dark);
  color: var(--text-light);
}

.footer h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-header {
  background: var(--bg-gradient-1);
  color: var(--text-light);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem;
}

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

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

.contact-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.thank-you-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.checkmark-circle {
  display: inline-block;
}

.legal-content {
  line-height: 1.8;
}

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

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

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

.disclaimer-content .alert {
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-gradient-2);
  color: var(--text-light);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  display: none;
}

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

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

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

img.rounded {
  border-radius: 12px;
}

img.shadow {
  box-shadow: var(--shadow-md);
}

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

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

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

  .navbar-brand .logo-text {
    font-size: 1.5rem;
  }

  .thank-you-content {
    padding: 2rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
