.about-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 590px;
    min-height: 590px;
}

.about-img-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
}

.img-main-wrapper {
    top: 0;
    left: 0;
    width: 83%;
    height: 520px;
    z-index: 2;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.img-front-wrapper {
    width: 48%;
    height: 315px;
    right: -6px;
    bottom: 14px;
    z-index: 4;
    border: none;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.20);
}

.img-main,
.img-front {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
    transition: transform 0.45s ease;
}

.img-main-wrapper:hover .img-main,
.img-front-wrapper:hover .img-front {
    transform: scale(1.05);
}

.about-shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.about-shape-one {
    width: 210px;
    height: 210px;
    right: 36px;
    top: 132px;
    border: 2px solid rgba(224, 59, 65, 0.17);
    z-index: 1;
}

.about-shape-two {
    width: 190px;
    height: 190px;
    left: 34px;
    bottom: 8px;
    background: rgba(224, 59, 65, 0.08);
    z-index: 1;
}

.about-dots {
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 120px;
    height: 95px;
    background-image: radial-gradient(rgba(34, 34, 34, 0.20) 2px, transparent 2px);
    background-size: 18px 18px;
    z-index: 0;
}

.about-content {
    max-width: 650px;
}

.about-subtitle {
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.about-subtitle i {
    color: var(--primary-color);
    font-size: 1rem;
}

.about-title {
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.title-line {
    width: 118px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 26px;
    border-radius: 20px;
}

.about-content p {
    margin-bottom: 17px;
    line-height: 1.78;
    color: #555;
    font-size: 1rem;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 800;
}

.about-cards {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.about-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid rgba(234, 234, 234, 0.95);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
    border-color: rgba(224, 59, 65, 0.22);
}

.about-card-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 59, 65, 0.10);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.55rem;
}

.about-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.about-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 14px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(224, 59, 65, 0.25);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.065);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 3px;
}

.about-feature strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.about-feature span {
    display: block;
    color: #666;
    font-size: 0.84rem;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .about-grid {
        gap: 50px;
    }

    .about-images {
        height: 520px;
        min-height: 520px;
    }

    .img-main-wrapper {
        height: 470px;
    }

    .img-front-wrapper {
        width: 52%;
        height: 290px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 85px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-images {
        height: 560px;
        min-height: 560px;
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-images {
        height: auto;
        min-height: initial;
        display: grid;
        gap: 22px;
    }

    .about-img-wrapper {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
    }

    .img-main-wrapper,
    .img-front-wrapper {
        width: 100%;
        height: auto;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    }

    .img-main,
    .img-front {
        height: auto;
        object-fit: contain;
    }

    .about-shape,
    .about-dots {
        display: none;
    }

    .about-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .about-card-icon {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 65px 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.96rem;
    }

    .about-card p {
        font-size: 0.92rem;
    }
}