
:root {
    --brand-red: #d31118;
    --brand-blue: #002855;
    --text-dark: #333333;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
body { color: var(--text-dark); line-height: 1.6; background-color: var(--bg-light); display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5 { color: var(--brand-blue); }
main { flex: 1; }

section { padding:6rem 2rem; max-width: 1240px; margin: 0 auto; }
.section-title { font-size:30px; margin-bottom:20px; text-transform: uppercase; position: relative; padding-bottom: 1rem; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 80px; height: 4px; background-color: var(--brand-red); }

header { background-color: var(--bg-white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.nav-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.nav-links a { font-weight: 600; color: var(--brand-blue); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-red); }

.hero { background: linear-gradient(135deg, var(--brand-blue) 0%, #001530 100%); color: var(--bg-white); padding:4rem 2rem; }
.hero h1 { color: var(--bg-white); font-size: 3.5rem; margin-bottom: 1rem; }
.hero h3 { color: var(--brand-red); font-size: 1.5rem; margin-bottom: 2rem; letter-spacing: 2px; }
.hero p { font-size:15px; max-width: 800px; margin: 0 0 1.5rem 0; color: #e0e0e0; text-align: justify;}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.card { background: var(--bg-white); padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-top: 4px solid var(--brand-blue); }
.card-red { border-top-color: var(--brand-red); }
.leader-card { text-align: left; padding: 2rem; background: var(--bg-white); border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-left: 4px solid var(--brand-red); }
.leader-card h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.leader-card h5 { color: var(--brand-blue); font-size: 1rem; margin-bottom: 1rem; font-style: italic; }

.styled-list { list-style: none; padding-left: 0; margin-top: 0.5rem; }
.styled-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.styled-list li::before { content: "•"; color: var(--brand-red); font-weight: bold; position: absolute; left: 0; }

.info-box { background: #eef2f5; padding: 1.5rem; border-radius: 8px; border-left: 5px solid var(--brand-blue); margin-top: 1rem; }
footer { background-color: #001530; color: var(--bg-white); text-align: center; padding: 10px; margin-top: auto; }

.left-align { text-align: left; }

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:var(--brand-blue);
    font-weight:bold;
}

@media (max-width:768px){
	.hero h1{font-size:34px;}
	.hero{padding:2rem 1rem;}
	section{padding:6rem 2rem;}
	.grid-2{grid-template-columns: 1fr;}
	
	
    .nav-container{
        position:relative;
        flex-direction:row !important;
        justify-content:space-between;
        align-items:center;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:95px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
        z-index:999;
		gap:0;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        width:100%;
        padding:8px;
        border-bottom:1px solid #eee;
    }
}