@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #3588ff;
    --secondary-color: #F7F7FB;
    --accent-color: #1877f2;
    --text-color: #333;
    --bg-color: #ffffff;
    --font-family: 'Inter', sans-serif;
}
a {
    text-decoration: none;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}


h1, h2 {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 0;
}

p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    h1, h2 {
        font-size: 36px;
    }
}

footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 36px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.country-flag {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.vpn-card {
    background-color: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
.vpn-card.disabled {
    opacity: .5;
}
.vpn-card .order-button {
    font-size: 16px;
    border-radius: 24px;
}

.tariff-card::before, .vpn-card::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(0,123,255,0.1) 100%);
}

.vpn-card.disabled::after {
    content: 'SOON';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    filter: drop-shadow(0 0px 16px);
}

.vpn-ping {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.ping-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ping-good { background-color: #28a745; }
.ping-medium { background-color: #ffc107; }
.ping-bad { background-color: #dc3545; }
.ping-gray { background-color: gray; }


.vpn-price {
    color: #28a745;
}

.fast {
    border: 1px solid #007bff;
/*    box-shadow: 0 0 36px rgb(0 123 255 / 20%)*/
    
}

.fast-label {
    position: absolute;
    top: -24px;
    right: -24px;
    background-color: #007bff;
    color: white;
    padding: 8px 16px 8px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
/*    z-index: 2;*/
}

.fast-label i {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .fast-label {
        right: 50%;
        transform: translateX(50%);
    }
}

/* header */

.menu-toggle {
    display: none;
}

header .nav-links .login-button {
    display: none;
}

@media screen and (max-width: 768px) {
    header .container .login-button {
        display: none;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }
    header .nav-links {
        top: 100px;
        height: calc(100vh - 100px);
        display: none;
        max-height: 0;
        transition: max-height .2s
    }
    header .nav-links .login-button {
        display: block;
        color: #fff;
    }
    header .nav-links.show {
        display: unset;
        max-height: unset;
    }
    header.scrolled .nav-links {
        top: 80px;
        height: calc(100vh - 80px);
    }
    .nav-links {
        position: absolute;
        left: 0px;
        width: 100%;
        background-color: #f5f5f5;
    }
    .nav-links div {
        display: flex;
        flex-direction: column;
    }
    header nav {
        width: 100%;
        justify-content: space-between;
    }
    header.scrolled nav {
        height: 60px;
    }
}
header {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
/*    box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/

}
header .headerWrapper {
    background-color: var(--bg-color);
    transition: background-color .2s;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.scrolled nav {
    height: 80px;
}

header.scrolled .headerWrapper {
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(8px);
}

.tgHintContainer {
    width: 100%;
    background: #1c7af4;
    color: #ffffff;
    font-weight: 500;
}
.tgHint {
    display: flex;
    justify-content: space-between;
    height: 38px;
}
.tgHint .left, .tgHint .left2 {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tgHint .left span {
    color: rgba(255, 255, 255, .6);
    font-weight: 400;
}

.tgHint .right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tgHint .right a {
    border: none;
    border-radius: 4px;
    background: #fff;
    color: #000;
    padding: 6px 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}
.tgHint .right button {
    background: none;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .tgHint {
        height: 36px;
        gap: 12px;
        padding: 0 14px 0 10px;
    }
    .tgHint .left {
        flex-direction: column;
        gap: 4px;
        align-items: start;
    }
    .tgHint .left > span {
        display: none;
    }
    .tgHint .left2 {
        font-size: 14px;
    }
    .tgHint .left2 svg {
        flex-shrink: 0;
    }
    .tgHint .left2 {
        gap: 12px;
    }
}

nav {
    height: 100px;
    display: flex;
    align-items: center;
    transition: height 0.3s ease;

    display: flex;
    gap: 36px;
}


.logo {
/*    text-decoration: none;*/
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links > div {
    position: relative;
}

.nav-links a {
/*    text-decoration: none;*/
    color: var(--text-color);
    transition: color 0.3s ease;
    padding: 10px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-color);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-links > div:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
/*    text-decoration: none;*/
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--secondary-color);
}

.login-button {
    background-color: #007bff;
    color: #fff;
/*    text-decoration: none;*/
    padding: 8px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.login-button:hover {
    background-color: #0056b3;
}

/* 2 */
.hero {
/*    margin-top: 100px;*/
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 200px 0 100px 0;
    color: #fff;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
    z-index: 1;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.5);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .hero {
        margin-top: 48px;
        padding-top: 100px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero-image {
        padding-top: 36px;
    }
}
.hero p {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 24px 96px rgba(255, 255, 255, .4));
}

.cta-button {
    display: inline-block;
    background: #FFF;
    color: #000;
    padding: 12px 30px;
    border-radius: 5px;
/*    text-decoration: none;*/
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    transform: translateY(1px);
}

.cta-button:active {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .cta-button {
            transform: scale(1.1);
    }
    .hero-content {
        flex-direction: column;
/*                flex-direction: column-reverse;      */
                gap: 47px;      
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;

    }
    .hero-image {
        text-align: center;
    }
}

/* 3 */
.features, .faq, .why-us {
    padding: 100px 0;
    background: var(--bg-color);
}
 .os-section, .faq {
    padding: 100px 0;
    
    background: var(--secondary-color);

 }
/*.why-us {
    background: var(--secondary-color);
}*/

.feature-grid, .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature, .why-us-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-color);
    border-radius: 20px;
    transition: all 0.3s ease;
/*    box-shadow: 0 10px 20px rgba(0,0,0,0.05);*/
    position: relative;
    overflow: hidden;
}
.feature {
    background: var(--secondary-color);
}

.feature::before, .why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover, .why-us-item:hover {
    transform: translateY(-10px);
/*    box-shadow: 0 20px 40px rgba(0,0,0,0.1);*/
}

.feature:hover::before, .why-us-item:hover::before {
    transform: scaleX(1);
}

.feature i, .why-us-item i {
    font-size: 54px;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
/*.feature .lottie {
margin-bottom: 25px;
margin: 0 auto;
width: 72px;
height: 72px;
}*/

.feature:hover i, .why-us-item:hover i {
    transform: scale(1.1);
}

.feature h3, .why-us-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.feature p, .why-us-item p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

/* 4 */
.cloud-vps {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.cloud-vps.promo {
    padding-bottom: 0;
    padding-top: 170px;
}

@media screen and (max-width: 768px) {
    .cloud-vps.promo {
        padding-top: 60px;
    }
}




.tariff-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

/*.tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(0 123 255 / 20%) 100%);
    z-index: 0;
    border-radius: 24px;
}*/

.tariff-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    flex: 1;
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 12px;
}

.tariff-name .tariff-cpu {
    padding: 4px 8px;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}
.tariff-name .tariff-cpu.tariff-cpu-intel {
    background-color: #007bff;
}
.tariff-name .tariff-cpu.tariff-cpu-amd {
    background-color: #FF3636;
}

.tariff-details {
    display: flex;
    gap: 36px;
    flex: 3;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}

.tariff-details > .tariff-detail:last-child {
    width: 140px;
}
.tariff-details > .tariff-detail:last-child > .tariff-detail-value {
    justify-content: left;
} 


@media screen and (max-width: 768px) {
    h2 {
        margin-bottom: 36px;
    }
    .tariff-card {
        flex-direction: column;
        gap: 32px;
    }
    .tariff-details {
        flex-direction: column;
        gap: 16px;
    }
}

.tariff-detail {
    text-align: center;
}

.tariff-detail-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.tariff-detail-value {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tariff-detail-value i {
    margin-right: 12px;
    color: #007bff;
    font-size: 20px;
}

.tariff-price {
    font-weight: bold;
    font-size: 18px;
    color: #007bff;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.order-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    max-width: 180px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-family: Inter, sans-serif;
    width: 130px;
    text-align: center;
}

.order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.order-button:hover::before {
    left: 100%;
}

.order-button:hover {
    background-color: #0056b3;
}

#tariff-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width: 768px) {
    #tariff-grid {
        gap: 32px;
    }
}
.selectors-container {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    justify-content: space-between;
}
.selectors-container .left {
    display: flex;
    gap: 16px;
}
@media screen and (max-width: 768px) {
    .selectors-container {
        flex-direction: column;
    }
    .selectors-container .left {
        flex-direction: column;
    }
    .selectors-container .custom-select {
        width: 100%;
    }
}

.custom-select {
    position: relative;
    min-width: 200px;
}

.select-selected {
    background-color: var(--bg-color);
/*    border: 1px solid var(--primary-color);*/
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.select-selected span {
    font-weight: 500;
}

.select-selected i {
    transition: transform 0.3s ease;
}

.select-selected.select-arrow-active i {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: var(--bg-color);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
/*    border: 1px solid var(--primary-color);*/
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.select-selected span, .select-items div {
    display: flex;
    align-items: center;
    gap: 8px;
}


.select-items.select-show {
    max-height: 300px;
/*    border-top: 1px solid var(--primary-color);*/
    
}

.select-hide {
    display: none;
}

.select-items div {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.select-items div:hover, .same-as-selected {
    background-color: var(--secondary-color);
}

.custom-select label {
/*    display: none;*/
    position: absolute;
    top: -8px;
    left: 12px;
/*    background-color: var(--bg-color);*/
    padding: 0 4px;
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.custom-select:focus-within label {
    color: var(--accent-color);
}

/* 4.1 */
.gpt-advisor {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.gpt-advisor h2 {
    margin-bottom: 8px;
}
.gpt-advisor p {
    margin-bottom: 36px;
}
.chat-container {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0px 54px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    padding: 16px;
    border-radius: 16px;
    max-width: 80%;
    line-height: 24px;
}

.user-message {
    background-color: #007bff;
    color: #fff;
    align-self: flex-end;
    margin-left: auto;
}

.gpt-message {
    background-color: #f7f7fb;
    color: #333;
}

.gpt-message .bold {
    font-weight: 600;
}

.gpt-message a {
    border: 0;
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    font-family: Inter;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.gpt-message a:active {
    transform: translateY(2px);
}

.gpt-message .message-btns {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-input {
    display: flex;
    padding: 15px;
    background-color: #f1f3f5;
}

.chat-input input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 25px;
    font-size: 16px;
}

.chat-input button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.chat-input button:hover {
    background-color: #0056b3;
}

.chat-input button i {
    margin-right: 8px;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-15deg); }
}

.thinking {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thinking i {
    animation: wave 1.5s infinite;
    transform-origin: bottom center;
}

/* 5  */
.vpn-servers {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.vpn-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.vpn-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.vpn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,123,255,0.1) 100%);
    z-index: 0;
    border-radius: 16px;
}

@media screen and (max-width: 768px) {
    .vpn-card {
        flex-direction: column;
        gap: 32px;
    }
    .vpn-details {
        flex-direction: column;
        gap: 16px;
    }
    .vpn-ping {
        justify-content: center;
    }
}

.vpn-card.disabled {
    opacity: 0.5;
}

.vpn-country {
    font-weight: bold;
    font-size: 20px;
    color: #333;
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
}

.vpn-country img {
    width: 36px;
    height: 27px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vpn-details {
    display: flex;
    gap: 30px;
    flex: 3;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}

.vpn-detail {
    text-align: center;
}

.vpn-detail-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.vpn-detail-value {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vpn-detail-value i {
    margin-right: 8px;
    color: #007bff;
    font-size: 18px;
}

.vpn-protocols {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.vpn-protocol {
    background-color: rgba(0,123,255,0.1);
    color: #007bff;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.vpn-ping {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.ping-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.vpn-price {
    font-weight: bold;
    font-size: 18px;
    color: #007bff;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-top: 64px;
}

@media screen and (max-width: 768px) {
    .os-grid {
        gap: 48px;
    }
}
.os-item {
    text-align: center;
    transition: all 0.3s ease;
}

.os-item:hover {
    transform: scale(1.1);
}

.os-item i {
    font-size: 64px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.os-item p {
    font-weight: bold;
    color: var(--text-color);
}

.faq {
    padding: 100px 0;
}

.faq-item {
/*    background-color: var(--secondary-color);*/
    background-color: var(--bg-color);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
/*    background-color: var(--secondary-color);*/
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 20px 20px 20px;
}

#contact > .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}
#contact > .container > .left {
    display: flex;
    align-items: center;
    gap: 36px;
}
@media screen and (max-width: 768px) {
    #contact > .container > .left {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 18px;
    }
}
#contact > .container > .left > a {
    color: #fff;
/*    text-decoration: none;*/
}
.container.ip {
    margin-top: 24px;
    color: rgba(255, 255, 255, .8);
}
.container.ip a {
/*    text-decoration: underline;*/
    color: #fff;
}
@media screen and (max-width: 768px) {
    #contact > .container {
        flex-direction: column;
    }
}
.terms {
    margin-top: 116px;
}
.terms .container {
    margin-bottom: 16px;
}
.terms h1 {
    font-size: 32px;
    margin-block: 24px;
}
.terms h2 {
    padding-top: 8px;
    font-size: 16px;
}
.terms h1, .terms h2 {
    color: #2c3e50;
}
.terms .company-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}
.terms p {
    padding-bottom: 16px;
}
.definition {
    margin-left: 24px;
}
.definition dt {
     font-weight: bold;
}
.definition dd {
    margin-bottom: 16px;
}
.terms ul {
    margin-bottom: 16px;
}