/* RaviElson Section Header Styles */

.ravielson-section-header {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .ravielson-section-header:hover {
        transform: translateY(-1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ravielson-section-header {
        transition: none;
    }
}

.ravielson-section-summary {
    color: #403836;
    font-size: 14px;
    font-weight: 600; /* Semibold */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.ravielson-section-title {
    color: #162B3B;
    font-size: 42px;
    font-weight: 600; /* Semibold */
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.ravielson-section-description {
    color: #54717B;
    font-size: 16px;
    font-weight: 400; /* Regular */
    max-width: 445px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Response for small screens */
@media (max-width: 768px) {
    .ravielson-section-title {
        font-size: 32px;
    }
}
