* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Lato, sans-serif;
    min-height: 100vh;
    background-image: url('./img/ic_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.page {
    width: 100%;
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-white-section {
    background-color: #ffffff;
    height: 15vh;
    min-height: 140px;
    width: 100%;
    position: relative;
}

.top-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}


.logo {
    position: absolute;
    left: 90px;
    top: 37px;
    width: 66px;
    height: 66px;
}

.logo img {
    width: 100%;
    height: 100%;
    display: block;
}


.title-group {
    position: absolute;
    left: calc(90px + 66px + 16px);
    top: 35px;
    display: flex;
    flex-direction: column;
}


.main-title {
    font-family: Lato, Lato;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.main-title .black-part {
    color: #272727;
}

.main-title .red-part {
    color: #FF0000;
}


.sub-title {
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 20px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-left: 40px;
    white-space: nowrap;

}


.privacy-terms {
    position: absolute;
    right: 106px;
    top: 51px;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    color: #666666;
    display: flex;
    gap: 32px;
    align-items: center;
    cursor: default;
    font-family: Lato, Lato;
}

.privacy-terms span.separator {
    color: #666666;
    font-weight: 500;
    font-size: 24px;
    user-select: none;
}

.clickable {
    cursor: pointer;
    color: #666666;
    text-decoration: none;
}

.clickable:hover {
    text-decoration: underline;
    opacity: 0.8;
}


.bottom-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1410px;
    margin: 0 auto;
}


.desc-image {
    width: 100%;
    max-width: 1110px;
    margin-top: 30px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.desc-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bt-image {
    width: 420px;
    max-width: 90%;
    margin-top: 54px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.bt-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1100px) {
    .main-title {
        font-size: 24px;
        line-height: 30px;
        white-space: normal;
    }

    .sub-title {
        font-size: 18px;
        white-space: normal;
    }

    .privacy-terms {
        font-size: 20px;
        right: 30px;
    }

    .logo {
        left: 30px;
    }

    .title-group {
        left: calc(30px + 66px + 16px);
    }
}

@media screen and (max-width: 700px) {
    .top-white-section {
        height: auto;
        min-height: 180px;
    }

    .top-content {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        position: static;
        margin: 10px 0;
    }

    .title-group {
        position: static;
        margin: 10px 0;
        align-items: center;
    }

    .privacy-terms {
        position: static;
        margin: 10px 0;
    }

    .main-title,
    .sub-title {
        text-align: center;
    }
}