body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    color: #333;
}

.container {
    width: 85%;
    margin: auto;
    padding: 20px 0;
}

.hero {
    background: linear-gradient(to right, #1f3c88, #2e86de);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

h1 {
    margin: 15px 0 5px;
}

h2 {
    color: #1f3c88;
    border-left: 5px solid #2e86de;
    padding-left: 10px;
}

section {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

ul {
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 15px;
    background: #1f3c88;
    color: white;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }
}