* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.profile {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

.bio {
    color: #666;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.link i {
    margin-left: 15px;
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp:hover {
    background: #25D366;
    color: white;
}

.instagram:hover {
    background: #E4405F;
    color: white;
}

.twitter:hover {
    background: #000000;
    color: white;
}

.tiktok:hover {
    background: #000000;
    color: white;
}

.phone:hover {
    background: #007bff;
    color: white;
}

.branches:hover {
    background: #28a745;
    color: white;
}

.snapchat:hover {
    background: #FFFC00;
    color: black;
}

.store:hover {
    background: #4a90e2;
    color: white;
}

@media(max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    
    .profile h1 {
        font-size: 20px;
    }
    
    .link {
        padding: 12px 15px;
        font-size: 14px;
    }
}
