.about-section {
    padding: 70px 0 30px 0;
    background: #f9fdfe;
}

.about-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.about-image img {
    max-width: 380px;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(109, 189, 200, 0.25);
    border: 4px solid #6dbdc8;
    background: #eef6f7;
}

.about-text {
    flex: 1;
    font-size: 1.15rem;
    color: #224056;
    line-height: 2.1;
}

.about-text h2 {
    color: #6dbdc8;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-text b {
    color: #0b6578;
}

@media (max-width: 950px) {
    .about-container {
        flex-direction: column-reverse;
        gap: 23px;
        text-align: center;
    }
    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }
}
