* {
  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: #2d2d2d;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #5a3e8c;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #452f6b;
  text-decoration: none;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #5a3e8c !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #2d2d2d;
  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: #5a3e8c;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-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(90, 62, 140, 0.75) 0%, rgba(90, 62, 140, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.page-hero {
  background: linear-gradient(135deg, #5a3e8c 0%, #7555a8 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.content-section {
  padding: 5rem 0;
}

.content-section.bg-light {
  background-color: #f8f8f8;
}

.content-section h2 {
  margin-bottom: 1.5rem;
}

.content-section img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #5a3e8c;
  border-color: #5a3e8c;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #452f6b;
  border-color: #452f6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 62, 140, 0.3);
}

.btn-outline-primary {
  color: #5a3e8c;
  border-color: #5a3e8c;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #5a3e8c;
  border-color: #5a3e8c;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #5a3e8c;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.25rem;
  color: #5a3e8c;
  margin-bottom: 0.75rem;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.testimonial-author {
  font-weight: 600;
  color: #5a3e8c;
  font-style: italic;
}

.cta-section {
  background: linear-gradient(135deg, #5a3e8c 0%, #7555a8 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info h4 {
  color: #5a3e8c;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: #5a3e8c;
  box-shadow: 0 0 0 0.2rem rgba(90, 62, 140, 0.25);
}

.form-check-input:checked {
  background-color: #5a3e8c;
  border-color: #5a3e8c;
}

.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.site-footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.site-footer p {
  color: #cccccc;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cccccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

.cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  margin-left: 0.5rem;
}

.cookie-banner .btn-secondary {
  background-color: #5a5a5a;
  border-color: #5a5a5a;
}

.cookie-banner .btn-secondary:hover {
  background-color: #4a4a4a;
  border-color: #4a4a4a;
}

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

  .cta-section {
    padding: 3rem 0;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}

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

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

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