:root {
  --primary-purple: #4a2c5e;
  --secondary-purple: #6b4a7d;
  --accent-purple: #8e6ba8;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --text-dark: #2c2c2c;
  --text-light: #6c757d;
  --white: #ffffff;
}

* {
  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;
  padding-top: 56px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.navbar {
  background-color: var(--dark-bg) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-purple) !important;
}

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

.hero-image {
  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(74, 44, 94, 0.8), rgba(26, 26, 46, 0.6));
  z-index: 2;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.page-header {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: var(--white);
  margin-bottom: 0;
}

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

.page-header .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.btn-primary:hover {
  background-color: var(--secondary-purple);
  border-color: var(--secondary-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 44, 94, 0.3);
}

.btn-outline-primary {
  color: var(--primary-purple);
  border-color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-light {
  border-width: 2px;
}

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

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

.card-title {
  color: var(--primary-purple);
  font-weight: 600;
}

.quality-list {
  list-style: none;
  padding-left: 0;
}

.quality-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.quality-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-purple);
  font-weight: bold;
  font-size: 1.2rem;
}

.approach-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.approach-item h4 {
  color: var(--secondary-purple);
  margin-bottom: 0.5rem;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--primary-purple);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.accordion .card {
  margin-bottom: 1rem;
}

.accordion .card-header {
  background-color: var(--light-bg);
  padding: 0;
}

.accordion .btn-link {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: none;
}

.accordion .btn-link:hover {
  color: var(--secondary-purple);
  text-decoration: none;
}

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

.contact-item {
  margin-bottom: 1.5rem;
}

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

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

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--secondary-purple);
  box-shadow: 0 0 0 0.2rem rgba(107, 74, 125, 0.25);
}

.footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer-legal-link {
  margin-left: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal-link:first-child {
  margin-left: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  display: none;
}

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

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

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

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

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

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

  .navbar-nav .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

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

  .hero-title {
    font-size: 2.5rem;
  }

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

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

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

  .cookie-banner .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .footer-legal-link {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

img.img-fluid {
  border-radius: 8px;
}
