body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f7f9 0%, #e1eef2 100%);
    color: #2d3436;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 100vh;
    text-align: center;
}

.container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.card {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    min-height: 60px;
    text-align: left;
}

.card-content strong { display: block; font-size: 1.1rem; }
.card-content p { margin: 0; font-size: 0.9rem; color: #636e72; }

.feature-card { border: 2px solid #0984e3; background: #f1f8ff; }

.timeline-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    border-left: 5px solid #1e3799;
    text-align: left;
}
