.section7 {
    width: 100%;
    background: white;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section7-container {
    max-width: 1200px;
    width: 100%;
}

.section7-title {
    font-size: 1.5rem;
    color: #333;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 2rem 0;
    text-align: left;
}

.section7-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.section7-table-header {
    background: #7a3f05;
}

.section7-table-header th {
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
}

.section7-table-body tr:nth-child(odd) {
    background: #f5f5f5;
}

.section7-table-body tr:nth-child(even) {
    background: white;
}

.section7-table-body td {
    color: #333;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
}

.section7-table-body tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section7 {
        padding: 3rem 1.5rem;
    }

    .section7-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .section7-table-header th,
    .section7-table-body td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .section7 {
        padding: 2rem 1rem;
    }

    .section7-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .section7-table {
        font-size: 0.85rem;
    }

    .section7-table-header th,
    .section7-table-body td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}
