#terms-of-use-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: auto;
}

.terms-of-use-header {
    position: relative;
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 90%;
    color: #2A67AA;
    font-family: 'Zurich Sans Regular', serif;
}

.terms-of-use-header-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    font-family: 'Ogg', serif;
    text-align: center;
    flex-grow: 1;
    color: #2A67AA;
    transform: translateX(-30px);
}

.back {
    display: flex;
    align-items: center;
    left: 30px;
    top: 50%;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    color: #2A67AA;
    font-size: 16px;
    font-weight: 400;
}

.back img {
    background-color: #2A67AA;
    height: 28px;
    width: auto;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.headline {
    position: absolute;
    right: -25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    font-size: clamp(12px, 2vw, 14px);
    color: #2A67AA;
    font-family: 'Zurich Sans Light', serif;
    text-align: right;
    flex-wrap: wrap;
    z-index: 10;
}

.headline img {
    height: 30px;
    width: auto;
}

.terms-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Zurich Sans Regular', Arial, sans-serif;
    color: #1C1C1C;
    line-height: 1.7;
    font-size: 16px;
}

.terms-content h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-family:  'Zurich Sans Regular', Arial, sans-serif;
    color: #1C1C1C;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 32px;
    text-align: left;
}

.terms-content h2 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 400;
    color: #1C1C1C;
    margin-bottom: 12px;
}

.terms-content strong {
    font-weight: 300;
    font-size: clamp(14px, 2.5vw, 18px);
}

@media (max-width: 768px) {
    .terms-of-use-header-title {
        display: none;
    }
    .headline {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
        right: 30px;
        left: 30px;
    }
}
