.spotlight {
    background-color: rgb(249, 250, 251) !important;
    min-height: 90vh;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e5eb;
}

.accordion-header {
    background: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: rgb(156, 163, 175);
    font-size: 1.2rem;
}

.accordion-content {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-text {
    padding: 20px 0;
    color: #2c3e50;
    line-height: 1.7;
}

.active .accordion-icon {
    transform: rotate(180deg);
}

.active .accordion-content {
    max-height: 500px;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .accordion-header {
        padding: 15px;
    }

    .accordion-title {
        font-size: 1.1rem;
    }
}