/* Category Details Section */

.category-details {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(201, 169, 97, 0.1);
    margin-bottom: 4rem;
}

.category-details h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary-color);
    letter-spacing: -0.5px;
}

.details-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.details-content h3:first-child {
    margin-top: 0;
}

.details-content p {
    color: var(--text-color);
    line-height: 1.85;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    color: var(--text-color);
    line-height: 1.85;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.services-list li strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .category-details {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .category-details h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .details-content h3 {
        font-size: 1.35rem;
        margin-top: 1.5rem;
    }

    .details-content p,
    .services-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-details {
        padding: 1.5rem;
    }

    .category-details h2 {
        font-size: 1.5rem;
    }

    .details-content h3 {
        font-size: 1.25rem;
    }
}
