﻿.doctor-profile-main {
    min-height: 100vh;
    background-color: #f9fafb;
    color: #111827;
    font-family: sans-serif;
}

.hero-section {
    background: linear-gradient(to bottom right, #eff6ff, #e0e7ff);
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin: auto;
}

@media (max-width: 768px) {
    .hero-container{
        flex-direction:column;
    }
}

.doctor-image-wrapper {
    width: 256px;
    height: 256px;
    border-radius: 9999px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    max-width: 640px;
    text-align: center;
}

.doctor-name {
    font-size: 3rem;
    color: #521fe0b0;
    margin-bottom: 1rem;
}

.doctor-title {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.cta-button, .cta-button-lg {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.2s ease;
}

    .cta-button:hover, .cta-button-lg:hover {
        background-color: #1d4ed8;
        transform: scale(1.05);
    }

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
}

.card-content {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.8;
}

    .card-content.philosophy {
        font-style: italic;
    }

.specialties-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    font-size: 1.125rem;
    color: #374151;
    list-style: none;
    padding: 0;
}

.icon-blue {
    color: #2563eb;
    width: 32px;
    height: 32px;
}

.icon-green {
    color: #059669;
    width: 32px;
    height: 32px;
}

.icon-green-small {
    color: #059669;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.icon-yellow {
    color: #f59e0b;
    width: 32px;
    height: 32px;
}

.final-cta {
    text-align: center;
    padding-top: 2rem;
}
