/* CSS Variables & Reset */
:root {
    --primary-purple: #6a0dad;
    /* Deep vibrant purple */
    --light-purple: #9b59b6;
    /* Softer purple */
    --dark-purple: #4a0072;
    /* Dark royal purple */
    --accent-purple: #f3e5f5;
    /* Very light purple bg */
    --text-dark: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline:hover {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ============================
   HEADER STYLES
   ============================ */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-right: 20px;
}

.logo-icon {
    font-size: 1.8rem;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    /* Allow flex shrinking if absolutely needed to avoid overflow */
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-purple);
}

.nav-link i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Dropdowns */
.nav-item-has-children {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item-has-children:hover .dropdown-menu,
.nav-item-has-children:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--accent-purple);
    color: var(--primary-purple);
    padding-left: 25px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ============================
   HOMEPAGE SECTIONS
   ============================ */
.section-padding {
    padding: 80px 0;
}

.light-bg {
    background-color: var(--bg-light);
}

.bg-accent {
    background-color: var(--accent-purple);
}

.bg-dark {
    background-color: #1a0b2e;
    color: var(--white);
}

.text-white {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.bg-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.bg-dark .section-header p {
    color: #ccc;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a0b2e 0%, #4a0072 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-disclaimer {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
}

/* Who Can Qualify */
.row-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.col-half {
    flex: 1;
}

.bg-accent.col-half {
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-list i {
    color: var(--primary-purple);
    margin-top: 4px;
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--dark-purple);
}

/* Models Grid */
.model-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.model-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.center-btn {
    text-align: center;
}

/* Steps Process */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    position: relative;
    padding-top: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-purple);
    /* very light */
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}

/* Coverage */
.max-600 {
    max-width: 600px;
    margin: 0 auto 30px;
}

.map-placeholder {
    background: #e9ecef;
    height: 300px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #888;
}

.map-placeholder i {
    font-size: 2rem;
}

/* Transparency */
.transparency-section {
    background-color: var(--white);
    border-top: 1px solid #eee;
}

.trust-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-purple);
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-box h3 {
    color: var(--dark-purple);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6a0dad 0%, #9b59b6 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-purple);
}

.cta-section .btn:hover {
    background-color: var(--accent-purple);
    transform: translateY(-2px);
}


/* ============================
   FOOTER STYLES
   ============================ */
.site-footer {
    background-color: #1a0b2e;
    /* Very dark purple/black for footer */
    color: #e0e0e0;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--light-purple);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.trust-desc {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.non-gov-disclosure {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 4px;
    border-left: 3px solid var(--light-purple);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-purple);
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1200px) {
    .main-nav {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--nav-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 15px 0;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Hidden by default */
        background-color: #fafafa;
        padding-left: 15px;
        width: 100%;
    }

    .dropdown-menu.active {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 20px;
    }

    .header-cta {
        display: block;
        margin-right: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row-flex {
        flex-direction: column;
    }

    .model-types-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        margin-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* ============================
   ANIMATIONS & POLISH
   ============================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.model-card,
.step-item,
.content-block {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Stagger animations for better effect */
.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.step-item:nth-child(1) {
    animation-delay: 0.1s;
}

.step-item:nth-child(2) {
    animation-delay: 0.2s;
}

.step-item:nth-child(3) {
    animation-delay: 0.3s;
}

.step-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Pulse effect for primary buttons */
@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 13, 173, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(106, 13, 173, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(106, 13, 173, 0);
    }
}

.btn-primary.pulse {
    animation: pulse-purple 2s infinite;
}

/* Glassmorphism touches */
.non-gov-disclosure {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

html {
    scroll-behavior: smooth;
}

/* ============================
   ABOUT PAGE STYLES
   ============================ */
.heading-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--light-purple));
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stylish-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-purple);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stylish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.1);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-purple);
}

.stylish-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.stylish-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mission-statement {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fdfbfd 0%, #f4eef9 100%);
    border-radius: 20px;
    border: 1px solid rgba(106, 13, 173, 0.1);
}

/* ============================
   CONTACT PAGE STYLES
   ============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.stylish-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stylish-input-group {
    margin-bottom: 25px;
}

.stylish-input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.stylish-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-main);
}

.stylish-input:focus {
    border-color: var(--light-purple);
    outline: none;
    box-shadow: 0 0 0 4px var(--accent-purple);
}

.contact-info-card {
    background: linear-gradient(135deg, #1a0b2e 0%, #4a0072 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(74, 0, 114, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.info-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-header-bg {
    background: var(--accent-purple);
    padding: 60px 0;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
}

/* ============================
   FAQ PAGE STYLES
   ============================ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.08);
    border-color: var(--primary-purple);
}

.text-center {
    text-align: center;
}

.equal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    /* Ensures equal height */
}

/* Flex Utilities */
.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 20px;
}

.flex-column {
    flex-direction: column;
}

.h-100 {
    height: 100%;
}

.flex-grow-1 {
    flex-grow: 1;
}

.mt-3 {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .equal-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item h3 i {
    background: var(--accent-purple);
    /* Light purple circle */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================
   STATES PAGE STYLES
   ============================ */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.state-link {
    display: block;
    width: 100%;
    background: var(--white);
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    font-size: 0.95rem;
}

.state-link:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.2);
    border-color: var(--primary-purple);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #999;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================
   PROVIDER SECTION STYLES
   ============================ */
.provider-section {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.provider-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.1);
    border-color: var(--primary-purple);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-purple);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(106, 13, 173, 0.2);
}

.provider-name {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 5px;
    font-weight: 700;
}

.provider-label {
    font-size: 0.85rem;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.provider-rating {
    color: #ffcc00;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
    flex-grow: 1;
}

.benefit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.benefit-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-green);
    font-size: 0.9rem;
}

.provider-disclaimer {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}