body {
    background-color: black;
}

.info-page-main {
    padding-top: 100px;
    /* Adjust based on header height */
    padding-bottom: 80px;
    min-height: 80vh;
    background-color: var(--color-background, #000000);
    color: #ffffff;
    /* Added white text color */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
    box-sizing: border-box;
}

.info-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 40px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.info-page-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 200;
    text-transform: uppercase;
    font-family: 'HALGapVariableUnlicensed-Variable';
    color: #BA66FF;
}

.info-page-text {
    font-size: 1rem;
    font-family: 'HAL Four Grotesk', sans-serif;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 800px;
}

.info-page-text p {
    margin-bottom: 1rem;
}

.info-page-text h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Ensure links in text are visible */
.info-page-main a {
    color: #ffffff;
    text-decoration: underline;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .info-page-container {
        padding: 0 20px;
        /* Reduced padding for mobile */
    }

    .info-page-title {
        font-size: 2rem;
        /* Requested 0.5rem for mobile */
    }

    .info-page-text {
        font-size: 0.8rem;
        /* Requested 0.5rem for mobile */
    }
}