.about-section {
    display: flex;
    min-height: 492px;
    padding: 89px 20px 56px;
    align-items: flex-start;
    background: #428bc2;
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    }
    .about-section__container {
    display: grid;
    width: min(860px, 100%);
    margin: 0 auto;
    grid-template-columns: 405px 425px;
    align-items: center;
    gap: 41px;
    }
    .about-section__content {
    min-width: 0;
    }
    .about-section__title {
    margin: 0 0 10px;
    }
    .about-section__title p,
    .about-section__title h1 {
    margin: 0;
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
    }
    .about-section__title p {
    font-size: 38px;
    line-height: 0.92;
    letter-spacing: 1px;
    }
    .about-section__title h1 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: 4px;
    }
    .about-section__title span {
    display: block;
    width: 247px;
    height: 1px;
    margin-top: 9px;
    background: #a8ed35;
    }
    .about-section__content h2 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
    }
    .about-section__text {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.58;
    font-weight: 400;
    text-align: justify;
    }
    .about-section__text p {
    margin: 0;
    }
    .about-section__text p + p {
    margin-top: 13px;
    }
    .about-section__text strong {
    font-weight: 700;
    }
    .about-section__image {
    position: relative;
    width: 425px;
    height: 280px;
    margin: 0;
    overflow: hidden;
    border-radius: 15px 0 15px 0;
    background: #a8ed35;
    box-shadow: 4px 0 0 #a8ed35, 0 3px 0 #a8ed35;
    }
    .about-section__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px 0 15px 0;
    }
    @media (max-width: 940px) {
    .about-section__container {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 425px);
    gap: 32px;
    }
    .about-section__image {
    width: 100%;
    }
    }
    @media (max-width: 780px) {
    .about-section {
    min-height: auto;
    padding: 60px 28px 65px;
    }
    .about-section__container {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
    gap: 38px;
    }
    .about-section__image {
    width: 100%;
    height: auto;
    aspect-ratio: 425 / 280;
    }
    }
    @media (max-width: 520px) {
    .about-section {
    padding: 48px 20px 52px;
    }
    .about-section__title p,
    .about-section__title h1 {
    font-size: 31px;
    }
    .about-section__title h1 {
    letter-spacing: 3px;
    }
    .about-section__title span {
    width: 205px;
    }
    .about-section__content h2 {
    font-size: 20px;
    }
    .about-section__text {
    font-size: 12px;
    line-height: 1.65;
    text-align: left;
    }
    .about-section__image {
    border-radius: 12px 0 12px 0;
    box-shadow: 3px 0 0 #a8ed35, 0 3px 0 #a8ed35;
    }
    .about-section__image img {
    border-radius: 12px 0 12px 0;
    }
    }