:root {
    --primary-gradient: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 20%, #fbc2eb 40%, #a6c1ee 60%, #8fd3f4 80%);
    --primary-accent: #e63946;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --error-color: #dc3545;
    --success-color: #28a745;
    --link-color: #0077b6;
    --border-error: #ff6b6b;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
}

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.9;
    color: var(--text-dark);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.wd_container {
    width: 100%;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 20px;
}

.wd_flex {
    display: flex;
}

.wd_flex-column {
    flex-direction: column;
}

.wd_justify-center {
    justify-content: center;
}

.wd_align-center {
    align-items: center;
}

.wd_text-center {
    text-align: center;
}

.wd_btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-accent);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

.wd_btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.wd_section {
    padding: 80px 0;
    position: relative;
}

.wd_header {
    background: var(--primary-gradient);
    color: var(--text-light);
    position: relative;
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
}

.wd_header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.wd_header__logo h1 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.wd_header__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.wd_header__nav a {
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wd_header__banner {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
}

.wd_header__actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.wd_premium__section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background-image: url('../wd-image/wd-bg-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wd_premium__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.wd_premium__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.wd_premium__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.wd_premium__card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.wd_premium__card:hover {
    transform: translateY(-10px);
}

.wd_premium__card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-accent);
}

.wd_about__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.wd_about__text {
    max-width: 800px;    
    margin: 0 auto;
    text-align: center;
}

.wd_about__image img {
    height: 50%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.wd_about__btn {
    margin-top: 15px;
}

.wd_welcome__section {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background-image: url('../wd-image/wd-bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wd_welcome__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.wd_welcome__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.wd_benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.wd_benefits__card {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wd_benefits__card:hover {
    transform: translateY(-10px);
}

.wd_benefits__card i {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
}

.wd_benefits__card ul {
    list-style: none;
}

.wd_benefits__card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wd_benefits__card li i {
    font-size: 1rem;
    margin: 0;
    color: var(--success-color);
}

.wd_choose__btn {
    margin-top: 25px;
}

.wd_checker__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.wd_checker__form {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.wd_checker__results {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.wd_checker__draws {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.wd_checker__draw {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
}

.wd_checker__numbers {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.wd_checker__numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    font-weight: bold;
}

.wd_checker__numbers .winner {
    background-color: var(--primary-accent);
    color: white;
}

.wd_testimonials__slider {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.wd_slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.wd_testimonial__card {
    min-width: 100%;
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.wd_testimonial__card img {
    border-radius: 50%;
    margin: 0 auto 15px;
}

.wd_testimonial__rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.wd_testimonial__card i.la-quote-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.1);
}

.wd_slider__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.wd_slider__prev, .wd_slider__next {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-accent);
}

.wd_slider__dots {
    display: flex;
    gap: 10px;
}

.wd_slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
}

.wd_slider__dot.active {
    background-color: var(--primary-accent);
}

.wd_faq__section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background-image: url('../wd-image/wd-bg-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wd_faq__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.73);
}

.wd_faq__container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.wd_faq__accordion {
    position: relative;
    margin-top: 30px;
}

.wd_faq__item {
    margin-bottom: 15px;
}

.wd_faq__question {
    position: relative;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius);
    transition: var(--transition);
}

.wd_faq__question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.wd_faq__question i {
    transition: transform 0.3s ease;
}

.wd_faq__question.active i {
    transform: rotate(45deg);
}

.wd_faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 var(--radius) var(--radius);
}

.wd_faq__answer p {
    padding: 15px;
}

.wd_responsible__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.wd_responsible__links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.wd_responsible__links a {
    background-color: var(--primary-accent);
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius);
}

.wd_responsible__partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.wd_responsible__partners img {
    filter: grayscale(100%);
    transition: var(--transition);
}

.wd_responsible__partners img:hover {
    filter: grayscale(0);
}

.wd_responsible__partners img:nth-child(3) {
    grid-column: span 2;
}

.wd_footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 40px 0 20px;
}

.wd_footer__links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin-bottom: 30px;
}

.wd_footer__links a {
    color: var(--text-light);
}

.wd_footer__copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wd_scroll__top {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.wd_scroll__top.active {
    opacity: 1;
    visibility: visible;
}

.wd_scroll__top:hover {
    transform: translateY(-5px);
}

.wd_form__group {
    margin-bottom: 20px;
}

.wd_form__group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.wd_form__group input,
.wd_form__group textarea,
.wd_form__group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    transition: var(--transition);
}

.wd_form__group input:focus,
.wd_form__group textarea:focus,
.wd_form__group select:focus {
    border-color: var(--primary-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.wd_form__password {
    position: relative;
}

.wd_form__password input {
    padding-right: 40px;
}

.wd_form__toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.wd_form__error {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 5px;
    min-height: 18px;
}

.wd_form__checkbox {
    margin: 25px 0;
}

.wd_form__checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wd_form__checkbox-group input {
    width: auto;
}

.wd_form__submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.wd_form__submit:hover {
    background-color: #c1121f;
}

.wd_form__submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.wd_register__overlay,
.wd_login__overlay,
.wd_recovery__overlay,
.wd_contact__overlay,
.wd_success__overlay,
.wd_checker__success,
.wd_contact__success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
}

.wd_agegate__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.wd_agegate__content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    z-index: 10000;
}

.wd_agegate__buttons {
    margin-top: 20px;
}

.wd_agegate__modal {
    pointer-events: auto;
}
.wd_agegate__content {
    pointer-events: auto;
}

.wd_register__modal {
    max-width: 900px;
    display: flex;
    animation: slideInRight 0.5s ease forwards, shake 0.5s ease 0.5s;
    transform: translateX(100%);
}

.wd_login__modal {
    max-width: 900px;
    width: 100%;
    display: flex;
    animation: slideInLeft 0.5s ease forwards, shake 0.5s ease 0.5s;
    transform: translateX(-100%);
}

.wd_recovery__modal {
    max-width: 900px;
    width: 100%;
    display: flex;
    animation: slideInDown 0.5s ease forwards, shake 0.5s ease 0.5s;
    transform: translateY(-100%);
}

.wd_contact__modal {
    max-width: 900px;
    width: 100%;
    display: flex;
    animation: modalAppear 0.5s ease forwards;
    transform: translateY(20px);
    opacity: 0;
}

.wd_success__modal,
.wd_checker__modal,
.wd_agegate__content,
.wd_contact__success-content {
    padding: 1rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    animation: modalAppear 0.5s ease forwards;
    transform: translateY(20px);
    opacity: 0;
}

.wd_register__modal {
    max-width: 900px;
    display: flex;
}

.wd_register__logo,
.wd_login__logo,
.wd_recovery__logo,
.wd_contact__logo {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: var(--radius) 0 0 var(--radius);
}

.wd_register__form,
.wd_login__form,
.wd_recovery__form,
.wd_contact__form {
    padding: 40px;
    width: 100%;
    background-color: #f8f9fa;
}

.wd_login__modal,
.wd_recovery__modal,
.wd_contact__modal {
    max-width: 900px;
    width: 100%;
}

.wd_success__modal,
.wd_checker__modal {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
}

.wd_success__icon,
.wd_checker__icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.wd_success__button,
.wd_checker__button,
.wd_contact__success-btn {
    margin-top: 20px;
}

.wd_register__close,
.wd_login__close,
.wd_recovery__close,
.wd_contact__close,
.wd_success__close,
.wd_checker__close,
.wd_agegate__close,
.wd_contact__close-btn {
    position: absolute;
    width: 32px;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

.wd_register__close i,
.wd_login__close i,
.wd_recovery__close i,
.wd_contact__close i,
.wd_success__close i,
.wd_checker__close i,
.wd_agegate__close i,
.wd_contact__close-btn i {
    width: 24px;
}

.wd_register__close:hover,
.wd_login__close:hover,
.wd_recovery__close:hover,
.wd_contact__close:hover,
.wd_success__close:hover,
.wd_checker__close:hover,
.wd_agegate__close:hover,
.wd_contact__close-btn:hover {
    color: var(--primary-accent);
    transform: rotate(90deg);
}

.wd_login__recovery {
    margin-top: 15px;
    text-align: center;
}

.wd_agegate__content {
    max-width: 600px;
    padding: 40px;
    text-align: center;
}

.wd_agegate__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.wd_agegate__confirm,
.wd_agegate__deny {
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.wd_agegate__confirm {
    background-color: var(--success-color);
    color: white;
}

.wd_agegate__deny {
    background-color: var(--error-color);
    color: white;
}

.wd_agegate__confirm:hover,
.wd_agegate__deny:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.wd_cookie__notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: white;
    padding: 15px 0;
    display: flex;
    z-index: 999;
}

.wd_cookie__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wd_cookie__accept {
    padding: 8px 20px;
    background-color: var(--primary-accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.wd_cookie__accept:hover {
    background-color: #c1121f;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes modalAppear {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    to { transform: translateX(0); }
}

@keyframes slideInRight {
    to { transform: translateX(0); }
}

@keyframes slideInDown {
    to { transform: translateY(0); }
}

@media (max-width: 1280px) {
    .wd_benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wd_checker__container {
        grid-template-columns: 1fr;
    }
    
    .wd_checker__draws {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .wd_header__nav ul {
        gap: 15px;
    }
    
    .wd_premium__features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wd_register__modal,
    .wd_login__modal, 
    .wd_recovery__modal, 
    .wd_contact__modal
     {
        flex-direction: column;
        max-width: 600px;
        height: 100%;
    }
    
    .wd_register__logo {
        border-radius: var(--radius) var(--radius) 0 0;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .wd_header__container {
        flex-direction: column;
    }
    
    .wd_header__nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
    
    .wd_premium__section {
        height: auto;
        padding: 80px 0;
    }
    
    .wd_premium__features,
    .wd_benefits__grid {
        grid-template-columns: 1fr;
    }

    .wd_about__image img {
        height: 100%;
    }
    
    .wd_responsible__container {
        grid-template-columns: 1fr;
    }
    
    .wd_responsible__partners {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 30px;
    }
    
    .wd_responsible__partners img:nth-child(3) {
        grid-column: span 1;
    }
    
    .wd_footer__links ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .wd_section {
        padding: 50px 0;
    }
    
    .wd_header__actions {
        flex-direction: column;
    }
    
    .wd_checker__draws {
        grid-template-columns: 1fr;
    }
    
    .wd_responsible__partners {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wd_agegate__buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .wd_cookie__content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .wd_header__nav ul {
        gap: 10px;
    }
    
    .wd_premium__content h2 {
        font-size: 1.8rem;
    }
}

.wdpage_privacy__main {
    background-color: #f8f9fa;
}

.wdpage_privacy__intro h2 {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.wdpage_privacy__intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wdpage_privacy__list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.wdpage_privacy__list li {
    background-color: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wdpage_privacy__list i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .wdpage_privacy__intro h2 {
        font-size: 2rem;
    }
    
    .wdpage_privacy__list li {
        flex-direction: column;
        gap: 10px;
    }
}

.wdpage_cookie__main {
    background-color: #f8f9fa;
}

.wdpage_cookie__intro h2 {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wdpage_cookie__intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wdpage_cookie__list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.wdpage_cookie__list li {
    background-color: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wdpage_cookie__list i {
    color: var(--link-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .wdpage_cookie__intro h2 {
        font-size: 2rem;
    }
    
    .wdpage_cookie__list li {
        flex-direction: column;
        gap: 10px;
    }
}

.wdpage_responsible__main {
    background-color: #f8f9fa;
}

.wdpage_responsible__intro h2 {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wdpage_responsible__intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wdpage_responsible__list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.wdpage_responsible__list li {
    background-color: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wdpage_responsible__list i {
    color: var(--primary-accent);
    font-size: 1.5rem;
    margin-top: 3px;
}

.wdpage_responsible__list a {
    color: var(--link-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .wdpage_responsible__intro h2 {
        font-size: 2rem;
    }
    
    .wdpage_responsible__list {
        grid-template-columns: 1fr;
    }
    
    .wdpage_responsible__list li {
        flex-direction: column;
        gap: 10px;
    }
}

.wdpage_contact__main {
    background-color: #f8f9fa;
}

.wdpage_contact__intro h2 {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wdpage_contact__intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wdpage_contact__form-section {
    background-color: white;
    padding: 40px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.wdpage_contact__form {
    max-width: 700px;
    margin: 0 auto;
}

.wdpage_contact__info {
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: var(--radius);
}

.wdpage_contact__info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wdpage_contact__info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wdpage_contact__info i {
    color: var(--primary-accent);
    font-size: 1.2rem;
    min-width: 25px;
}

.wdpage_contact__success {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.wdpage_contact__success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.wdpage_contact__success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-accent);
}

.wdpage_contact__success p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.wdpage_contact__success-close {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .wdpage_contact__intro h2 {
        font-size: 2rem;
    }
    
    .wdpage_contact__form-section {
        padding: 30px 20px;
    }
    
    .wdpage_contact__info {
        padding: 20px;
    }

    .wdpage_contact__info p {
        flex-direction: column;
    }

    .wdpage_contact__success {
        padding: 30px 20px;
    }
}