/* Excellence Under Construction Section */
.excellence-section {
    width: 100%;
    background-color: #1f3533;
}

.excellence-title {
    margin-bottom: 30px;
    color: #ffffff;
}

.excellence-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Left: Large Image */
.excellence-image-wrapper {
    flex: 0 0 40%;
    max-width: 40%;
}

.excellence-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

/* Right: 3x3 Grid */
.excellence-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    background-color: #1f3533;
    border-radius: 20px;
    overflow: hidden;
}

.excellence-cell {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.excellence-cell-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.excellence-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.excellence-cell-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.excellence-cell-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .excellence-container {
        flex-direction: column;
    }

    .excellence-image-wrapper {
        flex: none;
        max-width: 100%;
    }

    .excellence-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .excellence-cell {
        padding: 12px 10px;
    }

    .excellence-logo {
        width: 28px;
        height: 28px;
    }

    .excellence-cell-header {
        gap: 8px;
        margin-bottom: 6px;
    }

    .excellence-cell-title {
        font-size: 11px;
    }

    .excellence-cell-desc {
        font-size: 10px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .excellence-cell {
        padding: 10px 8px;
    }

    .excellence-logo {
        width: 24px;
        height: 24px;
    }

    .excellence-cell-header {
        gap: 6px;
        margin-bottom: 4px;
    }

    .excellence-cell-title {
        font-size: 10px;
    }

    .excellence-cell-desc {
        font-size: 9px;
    }
}
