body {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0px; /* Add top and bottom padding */
    margin: 0px;
    /* Hide scrollbars globally */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbars for webkit browsers globally */
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbars for all elements */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbars for webkit browsers on all elements */
*::-webkit-scrollbar {
    display: none;
}

.pricing-table-container {
    background-color: #000000;
    border: 2px solid #ffc107;
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 1400px;
    width: 100%;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto; /* Enable horizontal scrolling */
    /* Hide scrollbar for webkit browsers (Chrome, Safari, Edge) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for webkit browsers */
.table-wrapper::-webkit-scrollbar {
    display: none;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px; /* Force table to be wide, enabling scroll on smaller screens */
}

.pricing-table th,
.pricing-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid #444;
    vertical-align: middle;
}

.pricing-table .start {
    text-align: start;
}

.pricing-table thead th {
    border-bottom: 2px solid #ffc107;
    padding-bottom: 1.5rem;
}

.pricing-table tfoot td {
    border-bottom: none;
    padding-top: 2.5rem;
}

/* --- Sticky Column Styles --- */
.sticky-col {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: #000000; /* Match container background */
}

thead .sticky-col {
    z-index: 3; /* Ensure header is above body cells */
}
/* -------------------------- */


.header-course-items {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffc107;
    text-align: left;
    vertical-align: bottom;
    width: 35%;
}

.header-tier {
    vertical-align: bottom;
}

.tier-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 1rem;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.2rem;
}

.current-price {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.feature-name {
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    color: #e0e0e0;
    width: 35%;
}

.pricing-table tbody td {
    font-size: 1rem;
    color: #ccc;
    font-weight: 600;
}

.check-mark {
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- Section Divider and Header Styling --- */
.section-divider {
    border-bottom: 2px solid #ffc107; /* The yellow line */
}

.section-header-row td {
    border-bottom: none; /* No line under the header text */
    padding: 2rem 0 2rem;
}

.additional-inclusions-header {
    text-align: center;
    padding: 3rem 0 1.5rem; /* Creates space above and below the text */
    color: #ffc107;
    font-size: 1.8rem;
    font-weight: 700;
}

.additional-inclusions-header-text{
     font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107;
    text-align: left;
    vertical-align: bottom;
    width: 35%;
}
/* ------------------------------------------ */


.signup-button {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 130px;
}

.signup-button:hover {
    background-color: #ffda73;
}

.footnote {
    font-size: 0.9rem;
    color: #aaa;
    text-align: left;
    margin-top: 2.5rem;
    font-style: italic;
    text-align: center;
}


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    body {
        padding: 1rem;
    }

    .pricing-table-container {
        padding: 1rem;
    }

    .header-course-items {
        font-size: 2rem;
    }

    .tier-name {
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .pricing-table th, .pricing-table td {
        padding: 1rem 0.75rem;
    }
}

/* Smaller tablets and mobile devices */
@media (max-width: 768px) {
    .pricing-table {
        min-width: 850px; /* Adjust overall table width to reduce horizontal scroll */
    }

    .sticky-col {
        width: 140px !important; /* Force a smaller, fixed width */
        min-width: 140px !important; /* Prevent it from shrinking */
    }

    /* --- FONT SIZE REDUCTIONS FOR MOBILE --- */
    .feature-name {
        font-size: 0.9rem;
    }

    .header-course-items {
        font-size: 1.5rem;
    }
    
    .tier-name {
        font-size: 1.1rem;
    }

    .current-price {
        font-size: 1.5rem;
    }

    .original-price {
        font-size: 1rem;
    }

    .pricing-table tbody td {
        font-size: 0.9rem;
    }

    .signup-button {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .footnote {
        font-size: 0.8rem;
    }
}