.about-hospital-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.ah-image, .ah-content {
    flex: 1 1 300px;
}
.ah-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.ah-title {
    color: #0056b3;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
}
.ah-subtitle {
    color: #0088cc;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}
.ah-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .about-hospital-wrapper {
        flex-direction: column;
    }
}