.main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}
.terms-title {
    color: #FFF;
    font-size: 50px;
    line-height: 61px;
    font-family: Inter;
    font-weight: 600;
    text-align: center;
}
.terms-rules {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.terms-column {
    display: flex;
    flex-direction: column;
}
.bold-paragraph {
    color: #FFF;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.paragraph {
    color: #FFF;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.bold-paragraph-number {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.paragraph-13 {
    color: #FFF;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.a-href {
    text-decoration: underline;
}
.privacy-img-wrapper {
  display: none;
}
.privacy-img {
    width: 100px;
    height: 110px;
    transform: rotate(180deg);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .main {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 120px;
        position: relative;
    }
    .terms-title {
        font-size: 28px;
        line-height: 34px;
        z-index: 100;
    }
    .terms-rules {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .privacy-img-wrapper {
        position: absolute;
        top: -85px;
        left: 50%;
        transform: translateX(-50%) rotate(180deg);
        width: 100px;
        height: 110px;
        z-index: 1;
        display: block;
        pointer-events: none;
    }
}