body {
    margin: 0;
    padding: 30px;
    background-color: #f5f5f5;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    width: 450px;
    background: linear-gradient(145deg, #9a3546, #8c2f39);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 
                0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 
                0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.image-section {
    background-color: #250902;
    padding: 30px 20px 15px;
    text-align: center;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 18px;
    text-decoration: none;
}

.social-icon:hover {
    background: #fff;
    color: #8c2f39;
    transform: translateY(-3px);
}

.info-section {
    padding: 30px;
    background-color: #fff;
    color: #333;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 10px;
    color: #250902;
}

.title-container {
    margin-bottom: 20px;
}

.title-badge {
    background-color: #8c2f39;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.details {
    margin: 20px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.detail-item i {
    color: #8c2f39;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.detail-item span {
    font-size: 14px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.skill-tag {
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: #8c2f39;
    color: white;
}

@media (min-width: 600px) {
    .card-content {
        flex-direction: row;
    }
    
    .image-section {
        width: 35%;
        padding: 30px 20px;
    }
    
    .info-section {
        width: 65%;
    }
}