/* General styling for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

/* Individual heading sizes */
h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #222;
}

h2 {
    font-size: 2rem;
    line-height: 1.4;
    color: #333;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    color: #444;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #555;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
}

h6 {
    font-size: 1rem;
    line-height: 1.6;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}

/* Additional styles for better readability */
h1, h2, h3 {
    font-weight: 800;
}

h4, h5, h6 {
    font-weight: 700;
}

h1::after, h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin-top: 5px;
}
