/* Terms of Use Pattern Styles */
.terms-of-use-wrapper {
    width: 100%;
    background-color: var(--color-white);
    padding-top: 250px;
}

/* Content Section Styles */
.terms-content-section {
    width: 100%;
    padding: 3% 0;
    background-color: var(--color-white);
}

.terms-content-container {
    max-width: 1177px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Styles */
.terms-main-heading {
    color: var(--color-nav-gray);
    font-size: 2.1rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
}

.terms-last-updated {
    color: var(--color-nav-gray);
    font-size: var(--font-size-body);
    line-height: var(--font-lh-body);
    font-weight: 400;
    margin: 0 0 20px 0;
}

.terms-section-heading {
    color: var(--color-nav-gray);
    font-size: 2.1rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
    padding-bottom: 20px;
}

.terms-paragraph {
    color: var(--color-nav-gray);
    font-size: var(--font-size-body);
    line-height: var(--font-lh-body);
    font-weight: 400;
    margin: 0 0 20px 0;
    text-align: left;
}

/* Links */
.terms-paragraph a {
    color: var(--color-blue);
    text-decoration: underline;
}

.terms-paragraph a:hover {
    color: var(--color-nav-gray);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .terms-of-use-wrapper {
        padding-top: 50px;
    }

    .terms-content-section {
        padding: 5% 0;
    }
}

@media screen and (max-width: 768px) {
    .terms-content-section {
        padding: 7% 0;
    }

    .terms-content-container {
        padding: 0 20px;
    }

    .terms-main-heading {
        font-size: calc(2.1rem * 0.9);
        line-height: calc(2.6rem * 0.9);
    }

    .terms-section-heading {
        font-size: calc(2.1rem * 0.9);
        line-height: calc(2.6rem * 0.9);
    }
}

@media screen and (max-width: 576px) {
    .terms-content-section {
        padding: 9% 0;
    }

    .terms-content-container {
        padding: 0 15px;
    }

    .terms-main-heading {
        font-size: calc(2.1rem * 0.8);
        line-height: calc(2.6rem * 0.8);
    }

    .terms-section-heading {
        font-size: calc(2.1rem * 0.8);
        line-height: calc(2.6rem * 0.8);
    }

    .terms-paragraph {
        font-size: calc(var(--font-size-body) * 0.9);
        line-height: calc(var(--font-lh-body) * 0.9);
    }
} 