.about-section {
    padding: 80px 20px;
    background: #080606;
    font-family: Arial, sans-serif;
}
.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* Image cluster */
.about-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
}
.about-media .img-main {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform .25s ease;
}
.about-media .img-main:hover { transform: translateY(-4px); }

.about-media .img-accent {
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 48%;
    max-width: 260px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    border: 6px solid #1a1a1a;
    background: #0d0d0d;
}

/* Content */
.about-content h1 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: #28a745;
    letter-spacing: 0.3px;
}
.about-content .underline {
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #185320, #44c767);
    border-radius: 3px;
    margin: 8px 0 24px 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #f4f5f6;
    margin-bottom: 16px;
}
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 14px;
}
.about-highlights li {
    list-style: none;
    padding-left: 28px;
    position: relative;
    font-size: 0.98rem;
    color: #f1f3f5;
}
.about-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #6eb16f;
    font-weight: 700;
}

.about-content a {
    color: #ffffff;
}

@media (min-width: 992px) {
    .about-wrap { grid-template-columns: 1.05fr 1fr; }
}
@media (max-width: 575.98px) {
    .about-highlights { grid-template-columns: 1fr; }
    .about-media .img-accent {
        position: static;
        width: 70%;
        max-width: none;
        border-width: 4px;
        margin-top: -4px;
    }
}
