* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth
}

body {
    background: url('../imgs/background.jpg') fixed center top/cover;
    color: #9996cb
}

.pe_container {
    max-width: 1350px;
    margin: 12px auto;
    background: #281c62;
    position: relative;
    overflow: hidden;
    width: 98%;
    border-radius: 30px;
}

.pe_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #2e216c;
    flex-wrap: wrap
}

.pe_logo {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #bfb3ff;
    text-decoration: none;
}

.pe_nav {
    display: flex;
    align-items: center;
    gap: 25px
}

.pe_nav a {
    color: #bfb3ff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px
}

.pe_nav a:hover {
    color: #febd00
}

.pe_auth {
    display: flex;
    gap: 15px
}

.pe_btn {
    background: #febd00;
    color: #281c62;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px
}

.pe_btn:hover {
    background: #ffcc33
}

.pe_banner {
    text-align: center;
    padding: 250px 20px 60px 20px;
    background: url('../imgs/main.png') center no-repeat;
    background-size: cover;
}

.pe_banner .pe_title {
    text-transform: uppercase;
}

.pe_subtitle {
    color: #bfb3ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 15px
}

.pe_title {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    color: #febd00;
    margin-bottom: 25px;
    line-height: 1.1
}

.pe_banner_text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #ddd;
}

.pe_packages {
    padding: 60px 30px;
    background: #281c62
}

.pe_section_title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #febd00;
    margin-bottom: 50px
}

.pe_packages_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.pe_package_block {
    background: #2e216c;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #3a2c7a
}

.pe_package_block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3)
}

.pe_package_img {
    height: 80px;
    margin-bottom: 20px
}

.pe_package_name {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: #febd00;
    margin-bottom: 15px
}

.pe_package_detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 10px
}

.pe_detail_item {
    color: #bfb3ff;
    font-size: 16px
}

.pe_detail_item i {
    color: #febd00;
    margin-right: 8px
}

.pe_footer {
    background: #2e216c;
    padding: 50px 30px 30px;
    margin-top: 60px
}

.pe_footer_links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px
}

.pe_footer_links a {
    color: #bfb3ff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s
}

.pe_footer_links a:hover {
    color: #febd00
}

.pe_disclaimer {
    text-align: center;
    background: #1a1345;
    padding: 20px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 900px;
    font-size: 15px;
    line-height: 1.6;
}

.pe_footer_services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0
}

.pe_footer_services img {
    height: 40px;
}


.pe_copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a2c7a;
    font-size: 14px;
    color: #8a80d0
}

.pe_mobile_toggle {
    display: none;
    font-size: 28px;
    color: #febd00;
    cursor: pointer
}

.pe_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

.pe_popup_content {
    background: #2e216c;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    width: 98%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5)
}

.pe_popup_close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #bfb3ff;
    cursor: pointer
}

.pe_popup_title {
    font-family: 'Oswald', sans-serif;
    color: #febd00;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center
}

.pe_input_group {
    margin-bottom: 20px
}

.pe_input_group label {
    display: block;
    color: #bfb3ff;
    margin-bottom: 8px;
    font-size: 15px
}

.pe_input_group input {
    width: 100%;
    padding: 14px;
    background: #3a2c7a;
    border: 1px solid #4a3c8a;
    border-radius: 6px;
    color: #fff;
    font-size: 16px
}

.pe_checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0
}

.pe_checkbox input {
    width: 18px;
    height: 18px
}

.pe_checkbox label {
    color: #bfb3ff;
    font-size: 15px
}

.pe_error {
    color: #ff6b6b;
    margin-top: 10px;
    font-size: 14px;
    display: none
}

.pe_success {
    color: #4cd964;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    display: none
}


.pe_contact {
    padding: 80px 30px;
    background: #281c62
}

.pe_contact_container {
    max-width: 1200px;
    margin: 0 auto
}

.pe_contact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px
}

.pe_contact_form_wrapper {
    background: #2e216c;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #3a2c7a
}

.pe_form_row {
    display: flex;
    gap: 20px
}

.pe_half {
    flex: 1
}

.pe_contact_input {
    width: 100%;
    padding: 14px;
    background: #3a2c7a;
    border: 1px solid #4a3c8a;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    transition: border 0.3s
}

.pe_contact_input:focus {
    border-color: #febd00;
    outline: none
}

.pe_contact_textarea {
    width: 100%;
    padding: 14px;
    background: #3a3c7a;
    border: 1px solid #4a3c8a;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    resize: vertical;
    transition: border 0.3s;
    font-family: 'Montserrat', sans-serif
}

.pe_contact_textarea:focus {
    border-color: #febd00;
    outline: none
}

.pe_contact_btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-top: 10px
}

.pe_contact_info {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.pe_info_block {
    background: #2e216c;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #3a2c7a
}

.pe_info_icon {
    font-size: 42px;
    color: #febd00;
    margin-bottom: 20px
}

.pe_info_title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #febd00;
    margin-bottom: 15px
}

.pe_info_text {
    color: #bfb3ff;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5
}

.pe_info_note {
    color: #9996cb;
    font-size: 14px;
    margin-top: 15px;
    font-style: italic
}

.pe_thankyou_icon {
    text-align: center;
    font-size: 60px;
    color: #4cd964;
    margin-bottom: 20px
}

.pe_thankyou_text {
    color: #bfb3ff;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px
}

.pe_thankyou_btn {
    display: block;
    margin: 0 auto
}

@media (max-width:900px) {
    .pe_contact_content {
        grid-template-columns: 1fr
    }

    .pe_form_row {
        flex-direction: column;
        gap: 0
    }

    .pe_contact {
        padding: 60px 20px
    }
}



.pe_legal_section {
    padding: 60px 30px 80px;
    background: #281c62;
    min-height: 100vh
}

.pe_legal_container {
    max-width: 1200px;
    margin: 0 auto
}

.pe_legal_main_title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    color: #febd00;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase
}

.pe_legal_date {
    text-align: center;
    color: #bfb3ff;
    font-size: 18px;
    margin-bottom: 50px;
    letter-spacing: 1px
}

.pe_legal_content {
    max-width: 1000px;
    margin: 0 auto
}

.pe_legal_block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #3a2c7a
}

.pe_legal_block:last-child {
    border-bottom: none
}

.pe_legal_title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #febd00;
    margin-bottom: 25px;
    line-height: 1.3
}

.pe_legal_subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #bfb3ff;
    margin: 30px 0 15px
}

.pe_legal_text {
    color: #9996cb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px
}

.pe_legal_text:last-child {
    margin-bottom: 0
}

.pe_legal_list {
    margin: 20px 0 30px 40px
}

.pe_legal_list li {
    color: #9996cb;
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative
}

.pe_legal_list li:before {
    content: "•";
    color: #febd00;
    position: absolute;
    left: -20px
}

.pe_disclaimer_box {
    background: #2e216c;
    border: 2px solid #febd00;
    border-radius: 12px;
    padding: 30px;
    margin-top: 60px
}

.pe_disclaimer_title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #febd00;
    margin-bottom: 20px;
    text-align: center
}

.pe_disclaimer_text {
    color: #bfb3ff;
    text-align: center;
    font-size: 18px;
    line-height: 1.7
}

@media (max-width:768px) {
    .pe_legal_section {
        padding: 40px 20px 60px
    }

    .pe_legal_main_title {
        font-size: 36px
    }

    .pe_legal_title {
        font-size: 28px
    }

    .pe_legal_subtitle {
        font-size: 22px
    }

    .pe_legal_list {
        margin-left: 20px
    }
}





































































@media (max-width:1100px) {
    .pe_packages_grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .pe_mobile_toggle {
        display: block
    }

    .pe_nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #2e216c;
        position: absolute;
        top: 68px;
        left: 0;
        padding: 20px;
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3)
    }

    .pe_nav_active {
        display: flex;
    }

    .pe_header {
        padding: 15px 20px
    }

    .pe_banner {
        padding: 50px 20px
    }

    .pe_title {
        font-size: 38px
    }

    .pe_packages_grid {
        grid-template-columns: 1fr
    }

    .pe_packages {
        padding: 40px 20px
    }

    .pe_section_title {
        font-size: 36px
    }

    .pe_footer_services {
        gap: 25px
    }

    .pe_footer_services img {
        height: 40px
    }
}