/* Mobile photo guide container styling */
@media (max-width: 768px) {
    .photo-guide {
        padding: 20px 15px !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .photo-guide h3 {
        margin-bottom: 20px !important;
        text-align: center !important;
        font-size: 20px !important;
    }
    
    /* Make the example photo slightly smaller on mobile */
    .photo-example img {
        max-width: 85% !important;
        margin: 0 auto !important;
        display: block !important;
        border-radius: 8px !important;
    }
    
    /* Center the "Good Photo" label */
    .example-label {
        text-align: center !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        padding: 5px 15px !important;
    }
    
    /* Improve spacing for photo guide content */
    .photo-guide-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center the photo tips section */
    .photo-guide-right {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}