﻿:root {
    --primary: #6c63ff;
    --primary-dark: #5a52d5;
    --light-bg: #f9fafc;
    --dark-text: #1e293b;
    --gray: #64748b;
}

.section-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 28px;
}

.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(108, 99, 255, 0.2);
    }

.card-title {
    color: var(--primary-dark);
    font-weight: 600;
}
