body {
    background-color: #0a1120;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 50px;
    object-fit: cover;
    border: 3px solid #c2d1f0;
}

.header {
    text-align: center;
    margin-top: 20px;
}

.header h1 {
    font-size: 4rem;
    margin: 0;
}

.header p {
    font-size: 1.2rem;
    color: #a0aabf;
    margin-top: 10px;
}

.menu {
    margin-top: 30px;
    margin-bottom: 50px;
    display: flex;
    gap: 15px;
}

.menu button {
    background-color: #c2d1f0;
    color: #0a1120;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.menu button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.section {
    width: 80%;
    max-width: 800px;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    scroll-margin-top: 50px;
}

.section h2 {
    font-size: 2.5rem;
    color: #c2d1f0;
    margin-bottom: 25px;
    text-align: left;
}

.section p, .section li {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

a {
    color: #c2d1f0;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.contact {
    padding: 40px 0;
    text-align: left;
}

.contact h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact p {
    font-size: 16px;
    margin: 8px 0;
}

.contact a {
    color: #4f46e5;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(194, 209, 240, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.achievement-card img.logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.achievement-card h3 {
    font-size: 1.1rem;
    margin: 0;
}
