/* Fix for sectioned h1 elements without specified font-size */
section h1 {
    font-size: 2rem;
    margin: 1rem 0;
}

/* Specific fix for top_title */
.top_title {
    font-size: 2.5rem !important;
    margin: 1rem 0 !important;
}

/* Fix for other heading elements in sections */
section h2 {
    font-size: 1.75rem;
    margin: 0.875rem 0;
}

section h3 {
    font-size: 1.5rem;
    margin: 0.75rem 0;
}

section h4 {
    font-size: 1.25rem;
    margin: 0.625rem 0;
}

section h5 {
    font-size: 1.125rem;
    margin: 0.5625rem 0;
}

section h6 {
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* Responsive font sizes */
@media (max-width: 768px) {
    section h1, .top_title {
        font-size: 1.75rem !important;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    section h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    section h1, .top_title {
        font-size: 1.5rem !important;
    }
    
    section h2 {
        font-size: 1.25rem;
    }
    
    section h3 {
        font-size: 1.125rem;
    }
}