/* style.css - Common styles for all sections */
:root {
    --color-primary: #061447;
    --color-secondary: #FF4E00;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-dark: #212529;
}



body {
    background: var(--color-light);
}

h1, h2, h3 {
    font-weight: 700;
    
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
p { 
    font-size: 1rem;
    
    line-height: 1.6;
}





@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}