/*                              body                              */

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0);
}

/*                              header                              */

.line {
    position: fixed;
    width: 100%;
    left: 0;
    height: 60px;
    background-color: #330033;
    top: 0;
    z-index: 5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.logotext {
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    width: 235px;
}

.line img {
    width: 60px;
    margin-top: -1px;
}

.texttop {
    color: #FFF;
    position: absolute;
    margin-top: -50px;
    margin-left: 60px;
    font-size: 35px;
}

/*                              content                              */

.plumnet {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 100px 50px 170px 50px;
}

/* стили политики конфиденциальности */

.privacy-container {
    max-width: 900px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

/* заголовки */

.privacy-container h1 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-container h2 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* обычный текст и списки */

.privacy-container p {
    font-size: 16px;
    margin-bottom: 12px;
}

.privacy-container ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.privacy-container li {
    margin-bottom: 6px;
}

/* акценты */

.privacy-container .intro {
    font-size: 17px;
    margin-bottom: 20px;
}

.privacy-container .final-note {
    margin-top: 25px;
    font-weight: bold;
}

/*                              footer                              */

.line2 {
    position: fixed;
    width: 100%;
    left: 0;
    height: 130px;
    background-color: #330033;
    bottom: 0px;
    z-index: 5;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.6);
}

.logotext2 {
    background: rgba(255, 255, 255, 0);
    /* cursor: pointer; */
    transform: translate(-50%,0%);
    margin-left: 50%;
    width: 450px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.line2 img {
    width: 60px;
    margin-top: -1px;
}

.textdown {
    color: #FFF;
    font-size: 20px;
}

.social-links {
    margin-top: 5px;
}

.social-links a {
    color: #8F00FF;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.social-links a:hover {
    text-decoration: underline;
}