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

/* Default layout (desktop) */
.SurgeryType {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px; /* more breathing space */
    gap: 20px;
}

.SurgeryText, 
.SurgeryImage {
    width: 50%;
}

.SurgeryText h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.SurgeryText p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.SurgeryImage img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px; /* polished look */
}

/* Tablets */
@media (max-width: 992px) {
    .TreeSurgery {
        max-width: 95%;
    }

    .surgery-title-section h1 {
        font-size: 2.5rem;
    }

    .surgery-title-section p {
        font-size: 1.1rem;
    }

    .SurgeryText h2 {
        font-size: 1.5rem;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .SurgeryType {
        flex-direction: column;
        text-align: center;
    }

    .SurgeryText, 
    .SurgeryImage {
        width: 100%;
    }

    .SurgeryImage img {
        max-width: 90%;
        margin: 15px auto;
    }

    .surgery-title-section {
        padding: 50px 20px;
    }

    .surgery-title-section h1 {
        font-size: 2rem;
    }

    .surgery-title-section p {
        font-size: 1rem;
    }
}
