.title-section {
    text-align: center;
    margin-bottom: 50px;
}

.title-section img {
    width: 320px;
}

.therapist-title {
    font-size: 22px;
    color: var(--text-light);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Image Section Styles */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.therapist-photo {
    width: 400px;
    height: 550px;
    object-fit: cover;
    box-shadow: 0 5px 25px var(--shadow);
    border: 3px solid var(--primary-green);
    margin-bottom: 40px;
}

/* Qualifications Section */
.qualifications {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.badge-image {
    width: 300px;
    background-color: #FFFFFF;
    border-radius: 10px;
    object-fit: contain;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .therapist-name {
        font-size: 36px;
    }
    
    .therapist-title {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .therapist-photo {
        width: 80%;
        height: auto;
    }
    
    .badge-image {
        width: 300px;
        height: 175px;
    }
    
    /* Stack qualifications on small screens */
    .qualifications {
        flex-direction: column;
        gap: 20px;
    }
}

/* Print Styles */
@media print {
    /* Hide navigation and footer for printing */
    .main-header,
    .main-footer {
        display: none;
    }
    
    /* Remove shadows and borders for clean printing */
    .therapist-photo,
    .qualification-badge {
        box-shadow: none;
        border: 1px solid var(--border-light);
    }
    
    /* Ensure white background for printing */
    body {
        background-color: white;
    }
}