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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, 
        #98c7bc 0%,           
        #ffffff 25%,          
        #ffffff 75%,          
        #98c7bc 100%          
    );
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #5e8c81;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.back-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Content */
.professional-content {
    padding: 120px 0 40px;
}

.professional-profile {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #98c7bc, #5e8c81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.photo-placeholder img {
    width: 130px;
    height: 130px;
    object-fit: fill;
    background: linear-gradient(135deg, #98c7bc, #5e8c81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.profile-info h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.specialty {
    font-size: 1.1rem;
    color: #5e8c81;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 140, 129, 0.3);
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* Bio Section */
.bio-section {
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.bio-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5e8c81;
    margin-bottom: 20px;
}

.bio-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Professional Info */
.professional-info {
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    font-size: 1rem;
}

.patient-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.type-tag {
    background: rgba(94, 140, 129, 0.1);
    color: #5e8c81;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.schedule-btn {
    background: #5e8c81;
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.schedule-btn:hover {
    background: #4a756b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 140, 129, 0.3);
}

/* Location Section */
.location-section {
    padding: 40px;
}

.location-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5e8c81;
    margin-bottom: 20px;
}

.location-info p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.map-container {
    margin-top: 20px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(94, 140, 129, 0.1), rgba(152, 199, 188, 0.1));
    border: 2px dashed #5e8c81;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5e8c81;
    margin-bottom: 20px;
}

.map-btn {
    background: #5e8c81;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: #4a756b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .professional-content {
        padding: 100px 0 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .bio-section,
    .professional-info,
    .location-section {
        padding: 30px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .patient-types {
        justify-content: center;
    }
    
    .map-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        height: auto;
        padding: 15px 0;
    }
    
    .professional-content {
        padding: 130px 0 20px;
    }
    
    .photo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }
    
    .profile-info h1 {
        font-size: 1.6rem;
    }
    
    .social-media {
        justify-content: center;
    }
}