/* ================= BASE ================= */
* {
    box-sizing: border-box;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 1.5rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #4b4747;
    text-transform: uppercase;
}

/* ================= HERO ================= */
.about-hero img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

/* ================= INTRO ================= */
.about-intro h2 {
    font-size: 2.6rem;
    line-height: 1.4;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #666;
}

/* ================= DARK SECTION ================= */
.about-dark {
    background: #6a6a6a;
}

.light-text h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.light-text p {
    color: #e0e0e0;
    line-height: 1.7;
}

/* ================= LOGO ================= */
.about-logo h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.about-logo-img {
    margin-top: 2rem;
    max-width: 200px;
}

/* ================= SECTORS ================= */
/* ================= SECTORS ================= */
.about-sectors {
    background: #111;
    padding: 5rem 1.5rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
}

/* Each box */
.sector-box {
    text-align: center;
}

/* Image */
.sector-box img {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

/* Text */
.sector-box span {
    display: inline-block;
    background: #e5e5e5;
    color: #000;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Hover effect */
.sector-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero img {
        height: 60vh;
    }
}
