:root {
    --main: #2e3a40;
    --brand: #fbaa29ff;
    --grey: #6c718a;
}

html {
    overflow: hidden;
}

body {
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Inter", "Source Sans Pro", Helvetica, Arial, sans-serif;
    color: var(--main);
    display: flex;
    flex-direction: column;
    background-color: #ffffff; /* Or your desired background color */
    background-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 16.66% 250px; /* Adjust size of grid squares */
}

@media (max-width: 600px) {
    body {
        background-size: 33.33% 125px; /* Adjust for smaller screens */
    }
}

main {
    scroll-behavior: smooth;
    overflow-y: auto;
    height: calc(100vh - 64px);
}

@supports (height: 100dvh) {
    main {
        height: calc(100dvh - 64px);
    }
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsiveness */
@media (max-width: 1080px) {
    .container {
        max-width: 1080px;
    }
}

/* Remove fixed heights */
.main-ii {
    position: relative;
    overflow: hidden;
}

#main-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Now fills pricing container */
    z-index: 0;
    pointer-events: none;
}

.main-content-ii {
    position: relative;
    z-index: 1;
    min-height: 100vh; /* Ensure content height */
}
