:root {
    --black: #000;
    --accent: #c9fa49;
    --text: #adb0bc;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
}

.vnContainer {
    max-width: 1400px;
    width: 98%;
    margin: 16px auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    background: linear-gradient(110deg, rgba(50, 50, 50, 1) 0%, rgba(0, 0, 0, 1) 100%);
}



.vnButtonPrimary {
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.vnButtonPrimary:hover {
    opacity: 0.9;
}

.vnButtonSecondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.vnButtonSecondary:hover {
    background: rgba(201, 250, 73, 0.1);
}

.vnSectionTitle {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vnMainTitle {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.vnBgBlock {

    background-size: 100%;
    background-repeat: no-repeat;
}

.vnHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 1);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.vnLogo {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 50px 6px 6px 6px;
    margin-top: -20px;
}

.vnNav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vnNavLinks {
    display: flex;
    gap: 25px;
}

.vnNavLinks a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.vnNavLinks a:hover {
    color: var(--accent);
}

.vnHeaderButtons {
    display: flex;
    gap: 15px;
}

.vnMenuToggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

.vnBanner {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    background: url('../img/bg.png') center top no-repeat;
    background-size: 100%;
}

.vnBannerContent {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vnBannerText {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vnBannerButtons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.vnPackages {
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.vnPackagesTitle {
    text-align: center;
    margin-bottom: 50px;
}

.vnPackagesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vnPackageCard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.vnPackageCard:hover {
    transform: translateY(-10px);
}

.vnPackageIcon img {
    height: 60px;
    margin-bottom: 10px;
}

.vnPackageName {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.vnPackageDetails {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 14px;
}

.vnFooter {
    padding: 60px 40px 30px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.9);
}

.vnFooterLinks {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.vnFooterLinks a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.vnFooterLinks a:hover {
    color: var(--accent);
}

.vnDisclaimer {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vnIco {
    width: 50px;
    display: block;
    margin: 0 auto 20px auto;
    filter: grayscale(1);
}

.vnFooterServices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vnFooterServices img {
    height: 46px;
    opacity: 1;
    transition: opacity 0.3s;
}

.vnFooterServices img:hover {
    opacity: 1;
}

.vnCopyright {
    text-align: center;
    color: #777;
    font-size: 14px;
}

.vnModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.vnModalContent {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(201, 250, 73, 0.3);
}

.vnModalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vnModalTitle {
    color: var(--white);
    font-size: 24px;
}

.vnModalClose {
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.vnModalClose:hover {
    color: var(--accent);
}

.vnFormGroup {
    margin-bottom: 20px;
}

.vnFormGroup label {
    display: block;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 14px;
}

.vnFormGroup input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.vnCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vnCheckboxGroup label {
    margin-bottom: 0;
    font-size: 12px;
}

.vnFormError {
    color: #ff5555;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
    display: none;
}

.vnFormSuccess {
    color: var(--accent);
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
    display: none;
}

.vnTabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vnTab {
    padding: 10px 20px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.vnTabActive {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.vnTabContent {
    display: none;
}

.vnTabContentActive {
    display: block;
}

.vnContact {
    padding: 50px 40px;
}

.vnContact .vnContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    box-sizing: border-box;
}

.vnContact .vnSectionTitle,
.vnContact .vnMainTitle {
    text-align: center;
    margin-bottom: 20px;
}

.vnContactWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.vnContactForm {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(201, 250, 73, 0.1);
}

.vnContactForm input,
.vnContactForm textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.vnContactForm textarea {
    resize: vertical;
}

.vnContactForm button {
    width: 100%;
    margin-top: 10px;
}

.vnContactInfo {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vnContactItem {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vnContactIcon {
    width: 50px;
    height: 50px;
    background: rgba(201, 250, 73, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vnContactIcon i {
    color: var(--accent);
    font-size: 20px;
}

.vnContactDetails h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vnContactDetails p {
    color: var(--text);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .vnContactWrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .vnContact {
        padding: 60px 20px;
    }

    .vnContactForm {
        padding: 30px 20px;
    }
}

.vnLegalPage {
    padding: 80px 40px;
    background: var(--black);
    color: var(--text);
    min-height: 100vh;
}

.vnLegalContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.vnLegalTitle {
    color: var(--accent);
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.vnLegalDate {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vnLegalContent {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vnLegalSection {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vnLegalSection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vnLegalSection h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.vnLegalSection p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.vnLegalSection ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.vnLegalSection li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.vnLegalSection strong {
    color: var(--accent);
}

.vnCookieTable {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.vnCookieRow {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vnCookieRow:last-child {
    border-bottom: none;
}

.vnCookieHeader {
    background: rgba(201, 250, 73, 0.1);
    color: var(--accent);
    font-weight: 600;
}

.vnToolsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.vnToolCard {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.vnToolCard h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 18px;
}

.vnResourcesList {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.vnResourceItem {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
}

.vnResourceItem h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 18px;
}

@media (max-width: 992px) {
    .vnToolsGrid {
        grid-template-columns: 1fr;
    }

    .vnCookieRow {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .vnLegalPage {
        padding: 40px 20px;
    }

    .vnLegalContent {
        padding: 30px 20px;
    }

    .vnLegalTitle {
        font-size: 32px;
    }

    .vnLegalSection h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .vnLegalSection {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .vnToolCard {
        padding: 20px;
    }
}














@media (max-width: 992px) {
    .vnPackagesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vnMainTitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .vnMenuToggle {
        display: block;
        z-index: 9999;
    }

    .vnBanner {
        z-index: 1;
    }

    .vnNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        z-index: 999;
    }

    .vnNavActive {
        right: 0;
        z-index: 999;
        background: #000;
    }

    .vnNavLinks {
        flex-direction: column;
        width: 100%;
    }

    .vnHeaderButtons {
        flex-direction: column;
        width: 100%;
    }

    .vnBannerButtons {
        flex-direction: column;
        align-items: center;
    }

    .vnFooterLinks {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .vnPackagesGrid {
        grid-template-columns: 1fr;
    }

    .vnMainTitle {
        font-size: 28px;
    }

    .vnHeader,
    .vnPackages,
    .vnFooter {
        padding-left: 20px;
        padding-right: 20px;
    }

    .vnBanner {
        padding: 60px 20px;
    }

    .vnContact .vnContainer {
        padding: 30px 12px;
    }

    .vnContactDetails p {
        font-size: 13px;
    }

    .vnFooterLinks {
        gap: 14px 20px;
    }
}