:root {
      --bs-primary-50: #F7F2FC;
      --bs-primary-100: #EFE5F9;
      --bs-primary-200: #DBC4F2;
      --bs-primary-300: #C19AE8;
      --bs-primary-400: #A368DD;
      --bs-primary-500: #8536D2;
      --bs-primary-600: #6F2AAB;
      --bs-primary-700: #562085;
      --bs-primary-800: #3B165E;
      --bs-font-figtree: 'Figtree', sans-serif;
      --bs-font-crimson-pro: 'Crimson Pro', serif;
      --bs-border-radius-20px: 20px;
    }

    body {
      font-family: var(--bs-font-figtree);
      color: #333;
      background-color: var(--bs-background-base, #FFFFFF);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--bs-font-figtree);
      font-weight: 800; /* heading_weight */
      color: var(--bs-primary-800);
    }

    p {
      font-family: var(--bs-font-figtree);
      font-weight: 400; /* body_weight */
      line-height: 1.6;
    }

    .btn-primary {
      background-color: var(--bs-primary-500);
      border-color: var(--bs-primary-500);
      border-radius: var(--bs-border-radius-20px);
      padding: 12px 30px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      background-color: var(--bs-primary-600);
      border-color: var(--bs-primary-600);
      box-shadow: 0 8px 25px rgba(133, 54, 210, 0.3); /* shadow-grow effect */
      transform: translateY(-2px);
    }

    .btn-outline-primary {
      color: var(--bs-primary-500);
      border-color: var(--bs-primary-500);
      border-radius: var(--bs-border-radius-20px);
      padding: 12px 30px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
      background-color: var(--bs-primary-500);
      color: #fff;
      box-shadow: 0 8px 25px rgba(133, 54, 210, 0.3); /* shadow-grow effect */
      transform: translateY(-2px);
    }

    /* Glassmorphism nav bar */
    .blur-bg {
      background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
        font-family: var(--bs-font-crimson-pro);
        font-weight: 800;
        font-size: 1.8rem;
        color: var(--bs-primary-700) !important;
    }

    .nav-link {
        color: var(--bs-primary-700) !important;
        font-weight: 500;
        transition: color 0.3s ease;
    }

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

    .custom-hero-spacing {
        padding-top: 10rem !important; /* Adjusted for fixed navbar */
        padding-bottom: 8rem !important;
    }

    .generous-spacing {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .card-hover-grow {
      border-radius: var(--bs-border-radius-20px);
      overflow: hidden;
      transition: all 0.3s ease;
      background-color: var(--bs-primary-50); /* Subtle colored background */
      box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Initial subtle shadow */
    }

    .card-hover-grow:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(133, 54, 210, 0.2); /* shadow-grow effect */
    }

    .gradient-bg {
      background: linear-gradient(135deg, var(--bs-primary-50) 0%, var(--bs-primary-100) 100%);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .glassmorphism-panel {
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: var(--bs-border-radius-20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .glassmorphism-image-overlay {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: var(--bs-border-radius-20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: var(--bs-primary-200);
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 1.5rem;
      flex-shrink: 0;
    }
    
    .icon-circle svg {
      color: var(--bs-primary-700);
      width: 40px;
      height: 40px;
    }

    .bg-light-purple {
        background-color: var(--bs-primary-50);
    }

    .testimonial-card {
        background-color: var(--bs-primary-100); /* Lighter base for glassmorphism */
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: var(--bs-border-radius-20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 2.5rem;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonial-text {
        font-family: var(--bs-font-crimson-pro);
        font-style: italic;
        font-size: 1.25rem;
        color: var(--bs-primary-800);
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        font-weight: 700;
        color: var(--bs-primary-700);
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        filter: invert(30%) sepia(85%) saturate(1637%) hue-rotate(249deg) brightness(80%) contrast(90%);
        width: 2rem;
        height: 2rem;
    }

    .carousel-indicators [data-bs-target] {
        background-color: var(--bs-primary-500);
    }

    /* Footer styles */
    footer {
        background-color: var(--bs-primary-800); /* Dark background */
        color: #ffffff; /* White text for contrast */
        font-size: 0.9rem;
    }

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

    footer a:hover {
        color: var(--bs-primary-500);
    }

    /* Cookie consent banner */
    .cookie-consent-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(33, 37, 41, 0.95); /* Dark background with transparency */
        color: #f8f9fa;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1070; /* Above navbars */
        display: none; /* Hidden by default */
    }

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

    .cookie-consent-banner .btn {
        background-color: var(--bs-primary-500);
        border-color: var(--bs-primary-500);
        color: #fff;
        padding: 0.5rem 1.5rem;
        border-radius: var(--bs-border-radius-20px);
        transition: all 0.3s ease;
    }

    .cookie-consent-banner .btn:hover {
        background-color: var(--bs-primary-600);
        border-color: var(--bs-primary-600);
        box-shadow: 0 4px 15px rgba(133, 54, 210, 0.4);
    }
    
    @media (prefers-reduced-motion: reduce) {
        .card-hover-grow, .btn-primary, .btn-outline-primary {
            transition: all 0s;
        }
        .card-hover-grow:hover, .btn-primary:hover, .btn-outline-primary:hover {
            transform: none;
            box-shadow: none;
        }
    }