/* HERO */
.about-hero {
    background: linear-gradient(rgba(0,46,91,0.85), rgba(0,46,91,0.85)),
    url('https://via.placeholder.com/1500x500') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 16px;
    color: #ddd;
}

/* CONTENT */
.about-content {
    padding: 60px 40px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* BLOCK */
.about-block {
    margin-bottom: 40px;
}

.about-block h2 {
    color: var(--iimj-blue);
    margin-bottom: 10px;
    position: relative;
}

.about-block h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--iimj-orange);
    display: block;
    margin-top: 5px;
}

.about-block p {
    line-height: 1.8;
    color: #444;
}

/* HIGHLIGHT */
.highlight {
    background: #f9fbfd;
    padding: 25px;
    border-left: 5px solid var(--iimj-orange);
}

/* CARDS */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--iimj-blue);
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}