#body, .body-wrapper, main {
    background: transparent !important;
}

.controls-section {
    background: #eef2f7;
    min-height: 100vh;
    padding: 50px 20px 80px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.controls-header {
    text-align: center;
    margin-bottom: 50px;
}

    .controls-header .eyebrow {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #1565c0;
        background: #dbeafe;
        padding: 4px 14px;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .controls-header h2 {
        font-size: 38px;
        font-weight: 800;
        color: #0d2b5e;
        margin: 0 0 10px;
        letter-spacing: -0.5px;
    }

    .controls-header .subtitle {
        font-size: 15px;
        color: #64748b;
        max-width: 500px;
        margin: 0 auto;
    }

    .controls-header .divider {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #1565c0, #42a5f5);
        border-radius: 2px;
        margin: 18px auto 0;
    }

.controls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 28px;
}

.ctrl-card {
    background: #ffffff;
    border-radius: 12px;
    border-top: 4px solid #1565c0;
    box-shadow: 0 2px 8px rgba(13, 43, 94, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .ctrl-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 36px rgba(13, 43, 94, 0.15);
    }

.ctrl-card__img-wrap {
    background: #f1f5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 20px;
}

    .ctrl-card__img-wrap img {
        max-width: 150px;
        max-height: 160px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform .3s ease;
    }

.ctrl-card:hover .ctrl-card__img-wrap img {
    transform: scale(1.06);
}

.ctrl-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ctrl-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #0d2b5e;
    margin: 0 0 12px;
    line-height: 1.4;
}

.ctrl-card__desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 16px;
    text-align: justify;
}

.ctrl-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: #1565c0;
    text-decoration: none;
    border: 1.5px solid #1565c0;
    border-radius: 6px;
    padding: 7px 14px;
    width: fit-content;
    transition: background .2s ease, color .2s ease;
}

    .ctrl-card__link:hover {
        background: #1565c0;
        color: #ffffff;
    }

    .ctrl-card__link svg {
        flex-shrink: 0;
        transition: transform .2s ease;
    }

    .ctrl-card__link:hover svg {
        transform: translateX(3px);
    }

@media (max-width: 900px) {
    .controls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .controls-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .controls-header h2 {
        font-size: 28px;
    }

    .ctrl-card__img-wrap {
        height: 170px;
    }
}
