.return-icon {
    width: 52px;
    height: 52px;
    border-radius: 99rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;

    position: absolute;
    top: 1rem;
    right: 1rem;
}

.logo {
    margin: 0;
}

.content {
    padding: 0;
}

.terms-header {
    padding: 1rem;
    text-align: center;
}

.terms-content {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-right: 1rem;
    max-height: 350px;
    overflow-y: auto;
    text-align: justify;
}

/* Scrollbar Styling */
.terms-content::-webkit-scrollbar {
    width: 4px;
}

.terms-content::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 2px;
}

.terms-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}


.subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.description {
    font-size: var(--text-s);
    margin-bottom: 25px;
}


/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .return-icon {
        position: static;
        margin-right: 1rem;
    }

    .container {
        max-width: 1400px;
    }

    .content {
        padding-top: 4rem;
    }

    .page-title{
        margin-bottom: 2rem;
    }

    .terms-header{
        text-align: left;
    }

    .terms-content {
        max-height: calc(100vh - (111px + 64px + 48px + 180px));
    }
}