:root {
    --zv-primary-color: #6e45e2;
    --zv-secondary-color: #88d3ce;
    --zv-accent-color: #ff7e5f;
    --zv-dark-color: #2a2d3e;
    --zv-light-color: #f9f9ff;
    --zv-gradient: linear-gradient(135deg, var(--zv-primary-color) 0%, var(--zv-secondary-color) 100%);
    --zv-text-dark: #333;
    --zv-text-light: #fff;
    --zv-font-heading: 'EB Garamond', serif;
    --zv-font-body: 'Pontano Sans', sans-serif;
    --zv-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --zv-border-radius: 12px;
    --zv-transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--zv-font-body);
    color: var(--zv-text-dark);
    background-color: var(--zv-light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--zv-font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.zv-age_verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.zv-age_verification-container {
    background-color: var(--zv-light-color);
    padding: 2.5rem;
    border-radius: var(--zv-border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--zv-box-shadow);
    animation: zv-fadeInUp 0.6s ease;
}

.zv-age_verification-content i {
    font-size: 3rem;
    color: var(--zv-primary-color);
    margin-bottom: 1rem;
}

.zv-age_verification-content h2 {
    margin-bottom: 1rem;
    color: var(--zv-dark-color);
}

.zv-age_verification-content p {
    margin-bottom: 2rem;
    color: var(--zv-text-dark);
}

.zv-age_verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.zv-age_verification-buttons button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--zv-transition);
}

.zv-age_verification-confirm {
    background-color: var(--zv-primary-color);
    color: var(--zv-text-light);
}

.zv-age_verification-confirm:hover {
    background-color: var(--zv-accent-color);
    transform: translateY(-3px);
}

.zv-age_verification-decline {
    background-color: transparent;
    color: var(--zv-primary-color);
    border: 2px solid var(--zv-primary-color) !important;
}

.zv-age_verification-decline:hover {
    background-color: var(--zv-primary-color);
    color: var(--zv-text-light);
}

.zv-cookie_consent-overlay {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--zv-dark-color);
    color: var(--zv-text-light);
    padding: 1rem 1.5rem;
    border-radius: var(--zv-border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 90%;
    width: 600px;
    z-index: 9996;
    box-shadow: var(--zv-box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--zv-transition);
}

.zv-cookie_consent-overlay.show {
    opacity: 1;
    visibility: visible;
    animation: zv-fadeInUp 0.5s ease;
}

.zv-cookie_consent-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.zv-cookie_consent-content i {
    font-size: 1.8rem;
    color: var(--zv-secondary-color);
}

.zv-cookie_consent-content p {
    flex: 1;
    font-size: 0.9rem;
}

.zv-cookie_consent-content a {
    color: var(--zv-secondary-color);
    text-decoration: underline;
}

.zv-cookie_consent-accept {
    background-color: var(--zv-secondary-color);
    color: var(--zv-dark-color);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--zv-transition);
    white-space: nowrap;
}

.zv-cookie_consent-accept:hover {
    background-color: var(--zv-accent-color);
    transform: translateY(-2px);
}

.zv-header_wrapper {
    background-color: var(--zv-light-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--zv-transition);
}

.zv-header_container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zv-header_logo a {
    font-family: var(--zv-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--zv-primary-color);
    background: var(--zv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zv-header_navigation {
    display: flex;
    align-items: center;
}

.zv-header_nav_list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.zv-header_nav_list li a {
    font-weight: 500;
    transition: var(--zv-transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.zv-header_nav_list li a:hover {
    color: var(--zv-primary-color);
}

.zv-header_nav_list li a i {
    font-size: 1.1rem;
}

.zv-header_mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--zv-primary-color);
}

.zv-welcome_section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../zv-images/zv-bg-img-1.jpg') no-repeat center center;
    background-size: cover;
    padding: 6rem 2rem 8rem;
    margin-top: 80px;
}

.zv-header_wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
    z-index: 1;
}

.zv-welcome_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 45, 62, 0.7);
}

.zv-welcome_container {
    position: relative;
    z-index: 1;
    max-width: 1364px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: var(--zv-text-light);
}

.zv-welcome_container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: zv-fadeInDown 0.8s ease;
    color: #88d3ce;
}

.zv-welcome_container p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: zv-fadeInUp 0.8s ease 0.2s both;
}

.zv-welcome_features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: zv-fadeInUp 0.8s ease 0.4s both;
}

.zv-welcome_feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--zv-border-radius);
    padding: 2rem 1.5rem;
    max-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--zv-transition);
}

.zv-welcome_feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.zv-welcome_feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--zv-secondary-color);
}

.zv-welcome_feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.zv-welcome_feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.zv-welcome_button {
    display: inline-block;
    background-color: var(--zv-accent-color);
    color: var(--zv-text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--zv-transition);
    animation: zv-fadeInUp 0.8s ease 0.6s both;
}

.zv-welcome_button:hover {
    background-color: var(--zv-primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.zv-welcome_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.zv-about_section {
    position: relative;
    padding: 6rem 2rem;
    background: url('../zv-images/zv-bg-img-2.jpg') no-repeat center center;
    background-size: cover;
}

.zv-about_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 69, 226, 0.8);
}

.zv-about_container {
    position: relative;
    z-index: 1;
    max-width: 1364px;
    margin: 0 auto;
    color: var(--zv-text-light);
}

.zv-about_content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.zv-about_content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.zv-about_content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.zv-about_button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zv-text-light);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--zv-text-light);
    border-radius: 50px;
    transition: var(--zv-transition);
}

.zv-about_button:hover {
    background-color: var(--zv-text-light);
    color: var(--zv-primary-color);
    transform: translateY(-3px);
}

.zv-about_button i {
    transition: var(--zv-transition);
}

.zv-about_button:hover i {
    transform: translateX(3px);
}

.zv-about_image-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--zv-border-radius);
    overflow: hidden;
    box-shadow: var(--zv-box-shadow);
}

.zv-about_image-container img {
    width: 100%;
    height: auto;
    transition: var(--zv-transition);
}

.zv-about_image-container:hover img {
    transform: scale(1.03);
}

.zv-features_section {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--zv-light-color);
}

.zv-features_container {
    max-width: 1364px;
    margin: 0 auto;
    text-align: center;
}

.zv-features_container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--zv-dark-color);
}

.zv-features_grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.zv-features_card {
    background-color: var(--zv-text-light);
    border-radius: var(--zv-border-radius);
    padding: 2rem;
    max-width: 350px;
    box-shadow: var(--zv-box-shadow);
    transition: var(--zv-transition);
    text-align: center;
}

.zv-features_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.zv-features_icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--zv-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zv-features_icon-container i {
    font-size: 2rem;
    color: var(--zv-text-light);
}

.zv-features_card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--zv-dark-color);
}

.zv-features_card p {
    margin-bottom: 1.5rem;
    color: var(--zv-text-dark);
}

.zv-features_mini-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.zv-features_mini-cards span {
    background-color: rgba(110, 69, 226, 0.1);
    color: var(--zv-primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.zv-features_mini-cards i {
    font-size: 0.9rem;
}

.zv-features_button {
    display: inline-block;
    background: var(--zv-gradient);
    color: var(--zv-text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--zv-transition);
    margin-top: 2rem;
}

.zv-features_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.zv-features_wave {
    position: absolute;
    transform: rotate(180deg);
    bottom: -26rem;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 5;
}

.zv-games_section {
    position: relative;
    padding: 19rem 2rem;
    background: url('../zv-images/zv-bg-img-3.jpg') no-repeat center center;
    background-size: cover;
}

.zv-games_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 45, 62, 0.8);
}

.zv-games_container {
    position: relative;
    z-index: 1;
    max-width: 1364px;
    margin: 0 auto;
    color: var(--zv-text-light);
}

.zv-games_container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.zv-games_game-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--zv-border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--zv-box-shadow);
    transition: var(--zv-transition);
}

.zv-games_game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.zv-games_reverse {
    flex-direction: row-reverse;
}

.zv-games_image-wrapper {
    flex: 0 0 400px;
}

.zv-games_image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zv-transition);
}

.zv-games_game-card:hover .zv-games_image-wrapper img {
    transform: scale(1.05);
}

.zv-games_content-wrapper {
    flex: 1;
    padding: 2rem;
}

.zv-games_content-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.zv-games_features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.zv-games_features span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.zv-games_features i {
    font-size: 1rem;
}

.zv-games_play-button {
    display: inline-block;
    background-color: var(--zv-accent-color);
    color: var(--zv-text-light);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--zv-transition);
}

.zv-games_play-button:hover {
    background-color: var(--zv-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.zv-newsletter_section {
    padding: 6rem 2rem;
    background-color: var(--zv-light-color);
}

.zv-newsletter_container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zv-newsletter_container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--zv-dark-color);
}

.zv-newsletter_container p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--zv-text-dark);
}

.zv-newsletter_form {
    max-width: 600px;
    margin: 0 auto;
}

.zv-newsletter_input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.zv-newsletter_input-group i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zv-primary-color);
    font-size: 1.2rem;
}

.zv-newsletter_email-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-family: var(--zv-font-body);
    font-size: 1rem;
    transition: var(--zv-transition);
}

.zv-newsletter_email-input:focus {
    border-color: var(--zv-primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
}

.zv-newsletter_email-error {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    text-align: left;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    opacity: 0;
    transition: var(--zv-transition);
}

.zv-newsletter_checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.zv-newsletter_terms-check {
    width: 18px;
    height: 18px;
    accent-color: var(--zv-primary-color);
}

.zv-newsletter_checkbox-group label {
    font-size: 0.9rem;
    color: var(--zv-text-dark);
}

.zv-newsletter_submit-button {
    background: var(--zv-gradient);
    color: var(--zv-text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--zv-transition);
    width: 100%;
    max-width: 300px;
}

.zv-newsletter_submit-button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.zv-newsletter_submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.zv-newsletter_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--zv-transition);
}

.zv-newsletter_success-modal.show {
    opacity: 1;
    visibility: visible;
}

.zv-newsletter_success-content {
    background-color: var(--zv-text-light);
    padding: 2.5rem;
    border-radius: var(--zv-border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--zv-box-shadow);
    animation: zv-fadeInUp 0.5s ease;
}

.zv-newsletter_success-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.zv-newsletter_success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--zv-dark-color);
}

.zv-newsletter_success-content p {
    margin-bottom: 1.5rem;
    color: var(--zv-text-dark);
}

.zv-newsletter_success-email {
    font-weight: 600;
    color: var(--zv-primary-color);
}

.zv-newsletter_success-close {
    background-color: var(--zv-primary-color);
    color: var(--zv-text-light);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--zv-transition);
}

.zv-newsletter_success-close:hover {
    background-color: var(--zv-accent-color);
    transform: translateY(-3px);
}

.zv-faq_section {
    padding: 6rem 2rem;
    background-color: var(--zv-light-color);
}

.zv-faq_container {
    max-width: 800px;
    margin: 0 auto;
}

.zv-faq_container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--zv-dark-color);
}

.zv-faq_accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zv-faq_item {
    background-color: var(--zv-text-light);
    border-radius: var(--zv-border-radius);
    box-shadow: var(--zv-box-shadow);
    overflow: hidden;
}

.zv-faq_question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--zv-transition);
}

.zv-faq_question:hover {
    background-color: rgba(110, 69, 226, 0.05);
}

.zv-faq_question h3 {
    font-size: 1.2rem;
    color: var(--zv-dark-color);
}

.zv-faq_question i {
    font-size: 1.5rem;
    color: var(--zv-primary-color);
    transition: var(--zv-transition);
}

.zv-faq_item.active .zv-faq_question i {
    transform: rotate(180deg);
}

.zv-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.zv-faq_item.active .zv-faq_answer {
    max-height: 500px;
}

.zv-faq_answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--zv-text-dark);
}

.zv-faq_contact-button {
    display: block;
    margin: 3rem auto 0;
    background-color: var(--zv-primary-color);
    color: var(--zv-text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--zv-transition);
}

.zv-faq_contact-button:hover {
    background-color: var(--zv-accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.zv-testimonials_section {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--zv-dark-color);
    color: var(--zv-text-light);
}

.zv-testimonials_container {
    position: relative;
    max-width: 1364px;
    margin: 0 auto 19rem;
}

.zv-testimonials_container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.zv-testimonials_slider {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.zv-testimonials_card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--zv-border-radius);
    padding: 2rem;
    max-width: 500px;
    display: flex;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--zv-transition);
}

.zv-testimonials_card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.zv-testimonials_avatar {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--zv-secondary-color);
}

.zv-testimonials_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zv-testimonials_content {
    flex: 1;
}

.zv-testimonials_rating {
    color: var(--zv-accent-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.zv-testimonials_content p {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.zv-testimonials_content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.zv-testimonials_content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.zv-testimonials_content span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.zv-testimonials_contact-button {
    width: 100%;
    max-width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto 22rem;
    cursor: pointer;
    background-color: var(--zv-accent-color);
    color: var(--zv-text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;    
    transition: var(--zv-transition);
}

.zv-testimonials_contact-button:hover {
    background-color: var(--zv-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.zv-testimonials_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin-top: 165px;
}

.zv-responsible_section {
    padding: 6rem 2rem;
    background-color: var(--zv-text-light);
}

.zv-responsible_container {
    max-width: 1364px;
    margin: 0 auto;
}

.zv-responsible_container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--zv-dark-color);
}

.zv-responsible_content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.zv-responsible_text {
    flex: 1;
}

.zv-responsible_text p {
    margin-bottom: 1.5rem;
    color: var(--zv-text-dark);
}

.zv-responsible_toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.zv-responsible_toggle-content.show {
    max-height: 500px;
}

.zv-responsible_toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: none;
    color: var(--zv-primary-color);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: var(--zv-transition);
}

.zv-responsible_toggle-button:hover {
    color: var(--zv-accent-color);
}

.zv-responsible_toggle-button i {
    transition: var(--zv-transition);
}

.zv-responsible_toggle-button.active i {
    transform: rotate(180deg);
}

.zv-responsible_partners {
    flex: 0 0 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.zv-responsible_partners a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--zv-transition);
}

.zv-responsible_partners a:hover {
    transform: translateY(-5px);
}

.zv-responsible_partners img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.zv-contact_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--zv-transition);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    padding: 2rem 0;
}

.zv-contact_modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.zv-contact_modal-container {
    background-color: var(--zv-text-light);
    border-radius: var(--zv-border-radius);
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--zv-box-shadow);
    position: relative;
    animation: zv-fadeInUp 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.zv-contact_modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--zv-text-dark);
    cursor: pointer;
    transition: var(--zv-transition);
}

.zv-contact_modal-close:hover {
    color: var(--zv-primary-color);
    transform: rotate(90deg);
}

.zv-contact_modal-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--zv-dark-color);
    text-align: center;
}

.zv-contact_modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zv-contact_input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zv-contact_input-group label {
    font-weight: 600;
    color: var(--zv-dark-color);
}

.zv-contact_input-group input,
.zv-contact_input-group select,
.zv-contact_input-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--zv-font-body);
    font-size: 1rem;
    transition: var(--zv-transition);
}

.zv-contact_input-group input:focus,
.zv-contact_input-group select:focus,
.zv-contact_input-group textarea:focus {
    border-color: var(--zv-primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
}

.zv-contact_input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.zv-contact_checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.zv-contact_checkbox-group input {
    margin-top: 0.3rem;
    accent-color: var(--zv-primary-color);
}

.zv-contact_checkbox-group label {
    font-size: 0.9rem;
    color: var(--zv-text-dark);
    font-weight: normal;
}

.zv-contact_checkbox-group a {
    color: var(--zv-primary-color);
    text-decoration: underline;
}

.zv-contact_submit-button {
    background: var(--zv-gradient);
    color: var(--zv-text-light);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--zv-transition);
    margin-top: 1rem;
}

.zv-contact_submit-button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.zv-contact_submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.zv-contact_name-error,
.zv-contact_email-error,
.zv-contact_subject-error,
.zv-contact_message-error,
.zv-contact_terms-error {
    color: #e74c3c;
    font-size: 0.85rem;
    opacity: 0;
    transition: var(--zv-transition);
    height: 0;
}

.zv-contact_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--zv-transition);
}

.zv-contact_success-modal.show {
    opacity: 1;
    visibility: visible;
}

.zv-contact_success-content {
    background-color: var(--zv-text-light);
    padding: 2.5rem;
    border-radius: var(--zv-border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--zv-box-shadow);
    animation: zv-fadeInUp 0.5s ease;
}

.zv-contact_success-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.zv-contact_success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--zv-dark-color);
}

.zv-contact_success-content p {
    margin-bottom: 1.5rem;
    color: var(--zv-text-dark);
}

.zv-contact_success-close {
    background-color: var(--zv-primary-color);
    color: var(--zv-text-light);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--zv-transition);
}

.zv-contact_success-close:hover {
    background-color: var(--zv-accent-color);
    transform: translateY(-3px);
}

.zv-back_top-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--zv-gradient);
    color: var(--zv-text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--zv-transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.zv-back_top-button.show {
    opacity: 1;
    visibility: visible;
}

.zv-back_top-button:hover {
    background: var(--zv-accent-color);
    transform: translateY(-5px);
}

.zv-footer_wrapper {
    position: relative;
    background-color: var(--zv-dark-color);
    color: var(--zv-text-light);
    padding-top: 20rem;
}

.zv-footer_wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
}

.zv-footer_container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.zv-footer_main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.zv-footer_about,
.zv-footer_links,
.zv-footer_legal,
.zv-footer_contact {
    flex: 1;
    min-width: 250px;
}

.zv-footer_about h3,
.zv-footer_links h3,
.zv-footer_legal h3,
.zv-footer_contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.zv-footer_about h3::after,
.zv-footer_links h3::after,
.zv-footer_legal h3::after,
.zv-footer_contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--zv-gradient);
}

.zv-footer_about p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.zv-footer_links ul,
.zv-footer_legal ul {
    list-style: none;
}

.zv-footer_links li,
.zv-footer_legal li {
    margin-bottom: 0.8rem;
}

.zv-footer_links a,
.zv-footer_legal a {
    opacity: 0.8;
    transition: var(--zv-transition);
}

.zv-footer_links a:hover,
.zv-footer_legal a:hover {
    opacity: 1;
    color: var(--zv-secondary-color);
    padding-left: 5px;
}

.zv-footer_contact ul {
    list-style: none;
}

.zv-footer_contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
}

.zv-footer_contact i {
    font-size: 1.2rem;
    color: var(--zv-secondary-color);
}

.zv-footer_bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zv-footer_bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@keyframes zv-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zv-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .zv-welcome_container h1 {
        font-size: 3rem;
    }
    
    .zv-welcome_feature-card {
        max-width: 180px;
    }
    
    .zv-games_game-card {
        flex-direction: column;
    }

    .zv-features_wave {
        bottom: -14rem;
    }
    
    .zv-games_image-wrapper {
        flex: 0 0 300px;
    }
    
    .zv-games_reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .zv-header_navigation {
        position: fixed;
        top: 77px;
        left: 0;
        width: 100%;
        background-color: var(--zv-light-color);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--zv-transition);
    }
    
    .zv-header_navigation.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .zv-header_nav_list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .zv-header_mobile-toggle {
        display: block;
    }
    
    .zv-welcome_container h1 {
        font-size: 2.5rem;
    }
    
    .zv-welcome_features {
        gap: 1rem;
    }
    
    .zv-welcome_feature-card {
        max-width: 100%;
        flex: 1 1 160px;
    }

    .zv-features_wave {
        bottom: -10rem;
    }
    
    .zv-about_content h2,
    .zv-features_container h2,
    .zv-games_container h2,
    .zv-newsletter_container h2,
    .zv-faq_container h2,
    .zv-testimonials_container h2,
    .zv-responsible_container h2 {
        font-size: 2rem;
    }

    .zv-testimonials_container {
        margin: 0 auto 3rem;
    }

    .zv-testimonials_contact-button {
        margin: 3rem auto 3rem;
    }
    
    .zv-responsible_content {
        flex-direction: column;
    }
    
    .zv-responsible_partners {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .zv-header_container {
        padding: 1rem;
    }
    
    .zv-welcome_container h1 {
        font-size: 2rem;
    }
    
    .zv-welcome_container p {
        font-size: 1rem;
    }
    
    .zv-welcome_features {
        flex-direction: column;
    }
    
    .zv-welcome_feature-card {
        max-width: 100%;
    }

    .zv-features_wave {
        bottom: -6rem;
    }
    
    .zv-about_content h2,
    .zv-features_container h2,
    .zv-games_container h2,
    .zv-newsletter_container h2,
    .zv-faq_container h2,
    .zv-testimonials_container h2,
    .zv-responsible_container h2 {
        font-size: 1.8rem;
    }
    
    .zv-testimonials_card {
        flex-direction: column;
    }
    
    .zv-testimonials_avatar {
        margin: 0 auto 1rem;
    }


    
    .zv-cookie_consent-overlay {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .zv-cookie_consent-content {
        flex-direction: column;
    }
    
    .zv-footer_main {
        gap: 2rem;
    }
}

@media (max-width: 320px) {
    .zv-welcome_container h1 {
        font-size: 1.8rem;
    }
    
    .zv-welcome_button,
    .zv-faq_contact-button,
    .zv-testimonials_contact-button {
        width: 100%;
    }
    
    .zv-age_verification-buttons {
        flex-direction: column;
    }
    
    .zv-age_verification-buttons button {
        width: 100%;
    }

    .zv-features_wave {
        bottom: -4rem;
    }
   
    .zv-footer_about,
    .zv-footer_links,
    .zv-footer_legal,
    .zv-footer_contact {
        min-width: 100%;
    }
}

.zvpg-privacy_main {
    background-color: #f9f9ff;
    color: #2a2d3e;
}

.zvpg-privacy_hero {
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    padding: 20rem 2rem 8rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.zvpg-privacy_hero-container {
    max-width: 1364px;
    margin: 0 auto;
    margin-bottom: 14rem;
}

.zvpg-privacy_hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.zvpg-privacy_hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.zvpg-privacy_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.zvpg-privacy_content {
    padding: 4rem 2rem;
}

.zvpg-privacy_content-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-privacy_point {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zvpg-privacy_point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zvpg-privacy_point i {
    font-size: 2rem;
    color: #6e45e2;
    margin-bottom: 1rem;
}

.zvpg-privacy_point h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2d3e;
}

.zvpg-privacy_point p {
    margin-bottom: 0;
    min-height: 80px;
}

@media (max-width: 768px) {
    .zvpg-privacy_hero h1 {
        font-size: 2.5rem;
        flex-direction: column;
    }
    
    .zvpg-privacy_point {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .zvpg-privacy_hero h1 {
        font-size: 2rem;
    }
    
    .zvpg-privacy_hero p {
        font-size: 1rem;
    }
}

.zvpg-terms_main {
    background-color: #f9f9ff;
    color: #2a2d3e;
}

.zvpg-terms_hero {
    background: linear-gradient(135deg, #ff7e5f 0%, #6e45e2 100%);
    padding: 20rem 2rem 8rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.zvpg-terms_hero-container {
    max-width: 1364px;
    margin: 0 auto;
    margin-bottom: 14rem;
}

.zvpg-terms_hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.zvpg-terms_hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.zvpg-terms_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.zvpg-terms_content {
    padding: 4rem 2rem;
}

.zvpg-terms_content-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-terms_point {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zvpg-terms_point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zvpg-terms_point i {
    font-size: 2rem;
    color: #ff7e5f;
    margin-bottom: 1rem;
}

.zvpg-terms_point h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2d3e;
}

.zvpg-terms_point p {
    margin-bottom: 0;
    min-height: 80px;
}

@media (max-width: 768px) {
    .zvpg-terms_hero h1 {
        font-size: 2.5rem;
    }
    
    .zvpg-terms_point {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .zvpg-terms_hero h1 {
        font-size: 2rem;
    }
    
    .zvpg-terms_hero p {
        font-size: 1rem;
    }
}

.zvpg-cookie_main {
    background-color: #f9f9ff;
    color: #2a2d3e;
}

.zvpg-cookie_hero {
    background: linear-gradient(135deg, #88d3ce 0%, #6e45e2 100%);
    padding: 20rem 2rem 8rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.zvpg-cookie_hero-container {
    max-width: 1364px;
    margin: 0 auto;
    margin-bottom: 14rem;
}

.zvpg-cookie_hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.zvpg-cookie_hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.zvpg-cookie_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.zvpg-cookie_content {
    padding: 4rem 2rem;
}

.zvpg-cookie_content-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-cookie_point {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zvpg-cookie_point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zvpg-cookie_point i {
    font-size: 2rem;
    color: #88d3ce;
    margin-bottom: 1rem;
}

.zvpg-cookie_point h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2d3e;
}

.zvpg-cookie_point p {
    margin-bottom: 0;
    min-height: 80px;
}

@media (max-width: 768px) {
    .zvpg-cookie_hero h1 {
        font-size: 2.5rem;
    }
    
    .zvpg-cookie_point {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .zvpg-cookie_hero h1 {
        font-size: 2rem;
    }
    
    .zvpg-cookie_hero p {
        font-size: 1rem;
    }
}

.zvpg-responsible_main {
    background-color: #f9f9ff;
    color: #2a2d3e;
}

.zvpg-responsible_hero {
    background: linear-gradient(135deg, #2a2d3e 0%, #6e45e2 100%);
    padding: 20rem 2rem 8rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.zvpg-responsible_hero-container {
    max-width: 1364px;
    margin: 0 auto;
    margin-bottom: 14rem;
}

.zvpg-responsible_hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.zvpg-responsible_hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.zvpg-responsible_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.zvpg-responsible_content {
    padding: 4rem 2rem;
}

.zvpg-responsible_content-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-responsible_point {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zvpg-responsible_point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zvpg-responsible_point i {
    font-size: 2rem;
    color: #6e45e2;
    margin-bottom: 1rem;
}

.zvpg-responsible_point h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2d3e;
}

.zvpg-responsible_point p {
    margin-bottom: 0;
    min-height: 80px;
}

.zvpg-responsible_point a {
    color: #6e45e2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .zvpg-responsible_hero h1 {
        font-size: 2.5rem;
    }
    
    .zvpg-responsible_point {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .zvpg-responsible_hero h1 {
        font-size: 2rem;
    }
    
    .zvpg-responsible_hero p {
        font-size: 1rem;
    }
}

.zvpg-about_main {
    background-color: #f9f9ff;
    color: #2a2d3e;
}

.zvpg-about_hero {
    background: linear-gradient(135deg, #ff7e5f 0%, #88d3ce 100%);
    padding: 20rem 2rem 8rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.zvpg-about_wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
    z-index: 5;
}

.zvpg-about_hero-container {
    position: relative;
    max-width: 1364px;
    margin: 0 auto;
    margin-bottom: 165px;
}

.zvpg-about_hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.zvpg-about_hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.zvpg-about_wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: auto;
}

.zvpg-about_story {
    padding: 4rem 2rem;
    background-color: #fff;
}

.zvpg-about_story-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-about_mission {
    padding: 4rem 2rem;
    background-color: #f0f0f7;
}

.zvpg-about_mission-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-about_story h2,
.zvpg-about_mission h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2a2d3e;
}

.zvpg-about_story p,
.zvpg-about_mission p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.zvpg-about_story i {
    color: #ff7e5f;
}

.zvpg-about_mission i {
    color: #6e45e2;
}

@media (max-width: 768px) {
    .zvpg-about_wave-top {
        top: 78px;
    }
    .zvpg-about_hero h1 {
        font-size: 2.5rem;
    }
    
    .zvpg-about_story h2,
    .zvpg-about_mission h2 {
        font-size: 1.8rem;
    }

    .zvpg-about_hero-container {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .zvpg-about_hero h1 {
        font-size: 2rem;
    }
    
    .zvpg-about_hero p {
        font-size: 1rem;
    }
    
    .zvpg-about_story h2,
    .zvpg-about_mission h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.zvpg-faq_main {
    background-color: #f9f9ff;
    color: #2a2d3e;
}

.zvpg-faq_hero {
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    padding: 20rem 2rem 8rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.zvpg-faq_wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
    z-index: 5;
}

.zvpg-faq_hero-container {
    max-width: 1364px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 14rem;
}

.zvpg-faq_hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.zvpg-faq_hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.zvpg-faq_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.zvpg-faq_intro {
    padding: 3rem 2rem;
    background-color: #fff;
}

.zvpg-faq_intro-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-faq_intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2a2d3e;
}

.zvpg-faq_intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.zvpg-faq_content {
    padding: 2rem 2rem 4rem;
}

.zvpg-faq_content-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-faq_item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.zvpg-faq_question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zvpg-faq_question:hover {
    background-color: rgba(110, 69, 226, 0.05);
}

.zvpg-faq_question h3 {
    font-size: 1.2rem;
    color: #2a2d3e;
}

.zvpg-faq_question i {
    font-size: 1.5rem;
    color: #6e45e2;
    transition: all 0.3s ease;
}

.zvpg-faq_item.active .zvpg-faq_question i {
    transform: rotate(180deg);
}

.zvpg-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.zvpg-faq_item.active .zvpg-faq_answer {
    max-height: 500px;
}

.zvpg-faq_answer p {
    padding: 0 1.5rem 1.5rem;
    color: #2a2d3e;
}

.zvpg-faq_contact-button {
    display: block;
    margin: 3rem auto 0;
    background-color: #6e45e2;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zvpg-faq_contact-button:hover {
    background-color: #ff7e5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .zvpg-faq_wave-top {
        top: 78px;
    }

    .zvpg-faq_hero h1 {
        font-size: 2.5rem;
    }
    
    .zvpg-faq_intro h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .zvpg-faq_hero h1 {
        font-size: 2rem;
    }
    
    .zvpg-faq_hero p {
        font-size: 1rem;
    }
    
    .zvpg-faq_question {
        padding: 1rem;
    }
    
    .zvpg-faq_question h3 {
        font-size: 1.1rem;
    }
}

.zvpg-testimonials_main {
    background-color: #f9f9ff;
    color: #2a2d3e;
}

.zvpg-testimonials_hero {
    background: linear-gradient(135deg, #88d3ce 0%, #6e45e2 100%);
    padding: 20rem 2rem 8rem;
    position: relative;
    text-align: center;
    color: #fff;
}

.zvpg-faq_wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
    z-index: 5;
}

.zvpg-testimonials_hero-container {
    max-width: 1364px;
    margin: 0 auto;
    margin-bottom: 14rem;
}

.zvpg-testimonials_hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.zvpg-testimonials_hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.zvpg-testimonials_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.zvpg-testimonials_intro {
    padding: 3rem 2rem;
    background-color: #fff;
}

.zvpg-testimonials_intro-container {
    max-width: 1364px;
    margin: 0 auto;
}

.zvpg-testimonials_intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2a2d3e;
}

.zvpg-testimonials_intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.zvpg-testimonials_content {
    padding: 2rem 2rem 4rem;
}

.zvpg-testimonials_content-container {
    max-width: 1364px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.zvpg-testimonials_card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zvpg-testimonials_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zvpg-testimonials_avatar {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #6e45e2;
}

.zvpg-testimonials_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zvpg-testimonials_content {
    flex: 1;
}

.zvpg-testimonials_rating {
    color: #ff7e5f;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.zvpg-testimonials_card p {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.zvpg-testimonials_card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: rgba(42, 45, 62, 0.1);
}

.zvpg-testimonials_card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.zvpg-testimonials_card span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.zvpg-testimonials_button {
    display: block;
    margin: 3rem auto 0;
    background-color: #6e45e2;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zvpg-testimonials_button:hover {
    background-color: #ff7e5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .zvpg-faq_wave-top {
        top: 78px;
    }

    .zvpg-testimonials_hero h1 {
        font-size: 2.5rem;
    }
    
    .zvpg-testimonials_intro h2 {
        font-size: 1.8rem;
    }
    
    .zvpg-testimonials_card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .zvpg-testimonials_hero h1 {
        font-size: 2rem;
    }
    
    .zvpg-testimonials_hero p {
        font-size: 1rem;
    }
    
    .zvpg-testimonials_card {
        padding: 1.5rem;
    }
}

.zvpg-404_main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: var(--zv-gradient);
    color: var(--zv-text-light);
    text-align: center;
    padding: 2rem;
}

.zvpg-404_container h1 {
    font-size: 8rem;
    margin-bottom: 1rem;
}

.zvpg-404_container p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.zvpg-404_link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--zv-accent-color);
    color: var(--zv-text-light);
    border-radius: var(--zv-border-radius);
    box-shadow: var(--zv-box-shadow);
    transition: var(--zv-transition);
}

.zvpg-404_link:hover {
    opacity: 0.85;
}