body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #fdf6f9;
    color: #444;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.card h1 {
    color: #d16d8c;
    margin-bottom: 10px;
    font-size: 1.8em;
}

.contact-info {
    font-size: 1.1em;
    margin: 8px 0;
}

.card a {
    color: #d16d8c;
    text-decoration: none;
    font-weight: bold;
}

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

/* Responsive adjustments */
@media (max-width: 600px) {
    .card {
        padding: 15px;
    }
    .profile-img {
        width: 100px;
        height: 100px;
    }
    .card h1 {
        font-size: 1.5em;
    }
    .contact-info {
        font-size: 1em;
    }
}
