/* --- Mandatory Gears Section --- */
.mg-section {
    background-color: #ffffff;
    padding-top: 200px;
    padding-bottom: 80px;
}

.mg-container {
    max-width: 1440px;
    padding-left: 160px;
    padding-right: 160px;
    margin: 0 auto;
}

.mg-header {
    margin-bottom: 40px;
}

.mg-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #06142d;
    margin-bottom: 10px;
}

.mg-header h2 .text-green {
    color: #159c33;
}

.mg-header .sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #929aa7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gear Table Wrapper */
.gear-table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gear-table {
    width: 100%;
    border-collapse: collapse;
}

.gear-table thead th {
    background-color: #D1FAE5; /* Very light green tag */
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #06142d;
    text-align: center;
}

.gear-table thead th:first-child {
    text-align: left;
    padding-left: 30px;
}

.gear-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    text-align: center;
}

.gear-table tbody td:first-child {
    text-align: left;
    padding-left: 30px;
}

.gear-item-name {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gear-number {
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #929aa7;
}

.gear-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #06142d;
}

/* Status Icons/Badges */
.status-check {
    width: 20px;
    height: 20px;
    background-color: #159c33;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.status-recommended {
    background-color: #FEF3C7;
    color: #D97706;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
}

/* Warning Box Bottom */
.mg-warning-box {
    margin-top: 40px;
    background-color: #FFFBEB;
    border-radius: 12px;
    padding: 24px 30px;
    border-left: 4px solid #FACC15;
}

.mg-warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mg-warning-header i {
    color: #FACC15;
    font-size: 18px;
}

.mg-warning-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #06142d;
    text-transform: uppercase;
}

.mg-warning-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #929aa7;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .gear-table-wrapper {
        overflow-x: auto;
    }
    .gear-table {
        min-width: 800px;
    }
    .mg-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .mg-section {
        padding-top: 30px !important;
    }

    .mg-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mg-header h2 {
        font-size: 30px;
    }

    .mg-header .sub-title {
        font-size: 12px;
    }

    .mg-warning-box {
        padding: 20px;
    }
}
