* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #89CFF0 0%, #B0E0E6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
}

.card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.name {
    font-size: 32px;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
}

.email {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-link {
    color: #4a4a4a;
    font-size: 20px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.icon-link:hover {
    color: #000;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    background: #5a4a5e;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.btn:hover {
    background: #4a3a4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}