
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 0;
}


.hero {
    background: #002855; 
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 5px solid #d4af37; 
}

.hero h1 { margin: 0 0 10px 0; font-size: 2.5rem; }
.hero p { font-size: 1.2rem; opacity: 0.9; }

.social-links { margin-top: 15px; }
.social-links a {
    color: #d4af37;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.social-links a:hover { text-decoration: underline; color: white; }

.container {
    max-width: 850px;
    margin: 20px auto;
    padding: 20px;
}

section {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h2 {
    color: #002855;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

ul { padding-left: 20px; }
li { margin-bottom: 10px; }

a {
    color: #0056b3;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #d4af37;
    text-decoration: underline;
}

section p {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
footer, section {
    padding: 20px 0;
}