* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #4778d3, #dd4f45);
    color: white;
    text-align: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.profile-info h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.location i {
    margin-right: 8px;
}

.profile-content {
    padding: 30px;
}

.about-section {
    margin-bottom: 25px;
}

.about-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    display: inline-block;
}

.details-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
}

.languages, .specialties {
    flex: 1;
    min-width: 250px;
}

h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

h4 i {
    margin-right: 10px;
    color: #3498db;
}

ul {
    list-style: none;
    padding-left: 5px;
}

ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

ul li:before {
    content: "•";
    color: #3498db;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.certifications h4 {
    margin-bottom: 15px;
}

.contact-section {
    padding: 20px 30px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.contact-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-btn i {
    margin-right: 8px;
}

.contact-btn:hover {
    background-color: coral;
    transform: translateY(-2px);
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #128C7E;
}

@media (max-width: 600px) {
    .profile-header {
        padding: 20px 15px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-info h1 {
        font-size: 24px;
    }
    
    .profile-info h2 {
        font-size: 16px;
    }
    
    .profile-content {
        padding: 20px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-btn {
        justify-content: center;
    }
}