.about-hero {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #555;
}

.about-grid {
    max-width: 1440px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.about-row {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 33, 55, 0.12);
    overflow: hidden;
}

.about-row::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(244, 177, 131, 0.4), rgba(233, 78, 27, 0));
    z-index: 0;
}

.about-row-alt {
    flex-direction: row-reverse;
    background: linear-gradient(135deg, #f8fbff, #fff8f4);
}

.about-row-alt::before {
    left: -80px;
    right: auto;
    background: radial-gradient(circle at center, rgba(26, 90, 153, 0.35), rgba(26, 90, 153, 0));
}

.about-col {
    flex: 1 1 420px;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.about-img img,
.about-img video {
    width: 400px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-img video {
    background: #000;
}

@media (max-width: 768px) {
    .about-row,
    .about-row-alt {
        padding: 24px;
    }

    .about-row::before,
    .about-row-alt::before {
        display: none;
    }
}


.feedback-section {
    max-width: 1440px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.feedback-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.feedback-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feedback-item {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px 20px 20px;
    width: 300px;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.feedback-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.feedback-author {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}
