/* Mobile Order Adjustment for Hero Section */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .image-content {
        margin-top: 2rem;
        order: 2; /* Ensure image comes after text on mobile/tablet */
    }
    
    .text-content {
        order: 1; /* Ensure text comes first on mobile/tablet */
    }
    
    .credentials {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--color-gold);
        padding-bottom: 1rem;
        display: inline-block;
    }
    
    .description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .description::before {
        left: 0;
        top: -2rem;
    }
    
    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .doctor-name {
        font-size: 3rem;
    }
    
    .specialty {
        font-size: 1.6rem;
    }
    
    .description {
        font-size: 1.3rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .whatsapp-btn, .treatments-btn {
        width: 100%;
    }
}
