* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #b0b0b0;
    background: url('../media/win.jpg') center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.6;
}

.container_wrapper {
    max-width: 1450px;
    width: 98%;
    margin: 12px auto;
    border: 1px solid #2a2a2a;
    background: #121212;
    border-radius: 16px;
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Clash Display', sans-serif;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn_primary {
    background: linear-gradient(135deg, #45e555 0%, #2acf3a 100%);
    color: #000;
    padding: 12px 32px;
    border-radius: 32px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(69, 229, 85, 0.3);
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 229, 85, 0.4);
}

.btn_secondary {
    border: 1px solid #45e555;
    color: #45e555;
    padding: 14px 32px;
    border-radius: 32px;
    font-weight: 600;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_secondary:hover {
    background: rgba(69, 229, 85, 0.1);
    color: #fff;
    border-color: #fff;
}

.section_dark {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.section_dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #45e555 0%, #2a2a2a 100%);
}

.section_dark h2,
.section_dark h3 {
    color: #fff;
}

.section_light {
    background: #121212;
    padding: 80px 40px;
    border-bottom: 1px solid #2a2a2a;
}

.header_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2a2a;
}

.logo_brand {
    font-family: 'Clash Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #45e555 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav_menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav_link {
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav_link:hover {
    color: #45e555;
}

.nav_link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #45e555;
    transition: width 0.3s;
}

.nav_link:hover::after {
    width: 100%;
}

.header_actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile_toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.banner_hero {
    text-align: left;
    padding: 180px 40px;
    background: url('../media/hero.jpg') no-repeat center bottom/cover;
    position: relative;
    overflow: hidden;
    background-size: cover;
}


.banner_title {
    font-size: 52px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.banner_text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 0 40px;
    color: #d0d0d0;
}

.banner_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.packages_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package_card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.package_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #45e555 0%, transparent 100%);
}

.package_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #45e555;
}

.package_icon {
    margin-bottom: 18px;
    margin-top: 12px;
    line-height: 0;
}

.package_icon img {
    height: 70px;
}

.package_name {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.package_details {
    font-size: 16px;
    margin-bottom: 20px;
    color: #45e555;
    font-weight: 600;
}

.footer_main {
    background: #0a0a0a;
    color: #b0b0b0;
    padding: 60px 40px 30px;
    border-top: 1px solid #2a2a2a;
}

.footer_links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer_link {
    color: #b0b0b0;
    transition: all 0.3s;
    position: relative;
}

.footer_link:hover {
    color: #45e555;
}

.footer_disclaimer {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1000px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
    border: 1px solid #2a2a2a;
}

.footer_disclaimer strong {
    color: #45e555;
}

.footer_services {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.service_logo img {
    height: 45px;
    transition: all 0.3s;
}

.service_logo:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.footer_copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    color: #888;
    font-size: 14px;
}

.modal_overlay {
    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;
    backdrop-filter: blur(5px);
}

.modal_box {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    width: 99%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    border: 1px solid #2a2a2a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}


.modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal_close:hover {
    color: #45e555;
    background: rgba(255, 255, 255, 0.1);
}

.modal_title {
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.form_group {
    margin-bottom: 20px;
}

.form_input {
    width: 100%;
    padding: 14px;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: #121212;
    color: #fff;
    transition: all 0.3s;
}

.form_input:focus {
    outline: none;
    border-color: #45e555;
    box-shadow: 0 0 0 2px rgba(69, 229, 85, 0.2);
}

.form_check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    color: #b0b0b0;
}

.form_check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #45e555;
}

.form_error {
    color: #ff5555;
    margin-top: 10px;
    display: none;
    text-align: center;
    padding: 10px;
    background: rgba(255, 85, 85, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 85, 85, 0.3);
}

.form_success {
    color: #45e555;
    margin-top: 10px;
    display: none;
    text-align: center;
    padding: 10px;
    background: rgba(69, 229, 85, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(69, 229, 85, 0.3);
}


.section_contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.section_contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #45e555, #2acf3a, #45e555);
}

.section_contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69, 229, 85, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact_container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact_title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #45e555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact_subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact_form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form_group {
    margin-bottom: 25px;
}

.form_input {
    width: 100%;
    padding: 16px 20px;
    background: #121212;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form_input:focus {
    outline: none;
    border-color: #45e555;
    box-shadow: 0 0 0 4px rgba(69, 229, 85, 0.1);
}

.form_input::placeholder {
    color: #666;
}

select.form_input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2345e555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

.form_textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.5;
}

.contact_submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit_spinner {
    font-size: 20px;
}

.thank_you_content {
    text-align: center;
    padding: 20px 0;
}

.thank_you_icon {
    font-size: 80px;
    color: #45e555;
    margin-bottom: 20px;
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.thank_you_text {
    color: #b0b0b0;
    margin: 20px 0 30px;
    font-size: 16px;
    line-height: 1.6;
}

#closeThankYouBtn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .section_contact {
        padding: 60px 20px;
    }

    .contact_title {
        font-size: 32px;
    }

    .contact_subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact_form {
        padding: 30px 20px;
    }

    .form_row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .thank_you_icon {
        font-size: 60px;
    }
}


.policy_page {
    background: #0a0a0a;
    min-height: 100vh;
}

.policy_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy_header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #2a2a2a;
}

.policy_title {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #45e555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy_metadata {
    color: #888;
    font-size: 14px;
    margin-top: 10px;
}

.policy_content {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.policy_section {
    margin-bottom: 40px;
}

.policy_section:last-child {
    margin-bottom: 0;
}

.section_title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.section_subtitle {
    font-size: 18px;
    color: #45e555;
    margin: 25px 0 15px;
}

.legal_text {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.legal_list {
    margin: 20px 0 20px 40px;
    color: #b0b0b0;
}

.legal_list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.definition_term {
    color: #45e555;
    font-weight: 600;
    margin-top: 20px;
    display: block;
}

.contact_info {
    background: rgba(69, 229, 85, 0.05);
    border-left: 4px solid #45e555;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.contact_info p {
    margin: 5px 0;
}

.highlight_box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.last_updated {
    color: #45e555;
    font-weight: 600;
    font-style: italic;
}

.policy_footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    .policy_title {
        font-size: 32px;
    }

    .policy_content {
        padding: 30px 20px;
    }

    .legal_list {
        margin-left: 20px;
    }

    .section_title {
        font-size: 20px;
    }
}






















@media (max-width: 1024px) {
    .packages_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header_main {
        padding: 15px 20px;
    }

    .nav_menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-bottom: 1px solid #2a2a2a;
        z-index: 999;
    }

    .nav_menu.active {
        display: flex;
    }

    .header_actions {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #2a2a2a;
    }

    .nav_menu.active .header_actions {
        display: flex;
    }

    .mobile_toggle {
        display: block;
    }

    .banner_hero {
        padding: 80px 20px;
    }

    .banner_title {
        font-size: 36px;
    }

    .banner_text {
        font-size: 16px;
    }

    .packages_grid {
        grid-template-columns: 1fr;
    }

    .section_light,
    .section_dark {
        padding: 40px 20px;
    }

    .footer_main {
        padding: 40px 20px 20px;
    }

    .footer_links {
        gap: 15px;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #45e555;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2acf3a;
}

@media(max-width: 520px) {
    .footer_services {
        gap: 20px;
    }
}