
    /* --- COSMIC THEME CSS --- */
    :root {
        --cosmic-gold: #D4AF37;
        --cosmic-gold-light: #FCEABB;
        --cosmic-text: #4B3621;
        --cosmic-bg: #FCFBF8;
    }

    /* Section Background */
    .cosmic-testimonials {
        background: linear-gradient(180deg, #FFFFFF 0%, #FCFBF8 100%);
        padding: 80px 0;
        font-family: 'Open Sans', sans-serif;
        color: var(--cosmic-text);
    }

    /* Typography */
    .section-title {
        font-family: 'Open Sans', sans-serif;
        font-size: 3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto 50px auto;
        line-height: 1.6;
    }

    /* --- TESTIMONIAL CARDS --- */
    .testimonial-card {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        position: relative;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border: 1px solid rgba(212, 175, 55, 0.15); /* Faint gold border */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%; /* Ensures equal height in flex row */
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    }

    /* The Gold Quote Icon */
    .quote-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 40px;
        color: var(--cosmic-gold);
        opacity: 0.2;
    }

    .card-body-text {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 20px;
        font-style: italic;
    }

    /* User Profile Area */
    .user-profile {
        display: flex;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .user-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--cosmic-gold);
        margin-right: 15px;
    }

    .user-info h5 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        margin: 0;
        font-size: 1.1rem;
        color: #000;
    }

    .user-info span {
        font-size: 0.85rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* --- VIDEO WRAPPERS --- */
    .video-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        background: #000;
        position: relative;
        /* Aspect Ratio Hack to keep videos responsive */
        padding-bottom: 56.25%; /* 16:9 ratio */
        height: 0;
    }

    .video-card iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* --- PULSING CTA BUTTON --- */
    @keyframes goldPulse {
        0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
        100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }

    .btn-cosmic {
        background: linear-gradient(135deg, #FFB60F 0%, #D4AF37 100%);
        color: #000;
        font-size: 1.2rem;
        font-weight: 800;
        padding: 18px 50px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        margin-top: 30px;
        transition: transform 0.2s;
        animation: goldPulse 2s infinite;
        border: none;
    }

    .btn-cosmic:hover {
        transform: scale(1.05);
        color: #000; /* Keep text black */
        text-decoration: none;
    }
    
    /* Mobile tweaks */
    @media (max-width: 768px) {
        .section-title { font-size: 2rem; }
        .testimonial-card { margin-bottom: 20px; }
    }
