:root {
    --primary-gradient: linear-gradient(135deg, #e63946 0%, #1d3557 100%);
    --primary-accent: #457b9d;
    --primary-text: #f1faee;
    --error-color: #e63946;
    --success-color: #2a9d8f;
    --link-color: #a8dadc;
    --error-border: #e63946;
    --text-dark: #1d3557;
}

*, *::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.owt_header {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
}

.owt_header__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: -1;
}

.owt_header__content {
    max-width: 1526px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.owt_header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.owt_header__logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.owt_header__logo-link:hover {
    transform: scale(1.05);
}

.owt_header__logo-link img {
    display: block;
    width: 100%;
    max-width: 690px;
    height: 100%;
    max-height: 150px;
    border-radius: 50%;
}

.owt_header__responsible {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-text);
    font-size: 0.9rem;
}

.owt_header__responsible-icon {
    font-size: 1.5rem;
}

.owt_header__register-btn {
    background-color: var(--primary-text);
    color: var(--text-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.owt_header__register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.owt_header__main {
    margin-top: 3rem;
    color: var(--primary-text);
    text-align: center;
}

.owt_header__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.owt_header__description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.owt_header__benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.owt_header__benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    width: 200px;
    transition: all 0.3s ease;
}

.owt_header__benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.owt_header__benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.owt_header__benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-text);
}

.owt_registration__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease;
}

.owt_registration__form-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 765px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

.owt_registration__close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.owt_registration__close-btn:hover {
    transform: rotate(150deg) scale(1.2);
}

.owt_registration__logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.owt_registration__logo img {
    width: 100%;
    max-width: 690px;
    height: 100%;
    max-height: 250px;
    padding-top: 10px;
    border-radius: 60%;
}

.owt_registration__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.owt_registration__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.owt_registration__label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.owt_registration__input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.owt_registration__input-icon {
    position: absolute;
    left: 1rem;
    color: var(--primary-accent);
    font-size: 1.2rem;
}

.owt_registration__input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.owt_registration__input:focus {
    border-color: var(--primary-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(69, 123, 157, 0.2);
}

.owt_registration__input.error {
    border-color: var(--error-border);
}

.owt_registration__error {
    color: var(--error-color);
    font-size: 0.8rem;
    min-height: 1rem;
}

.owt_registration__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.owt_registration__checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.owt_registration__checkbox {
    display: none;
}

.owt_registration__custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.owt_registration__checkbox:checked + .owt_registration__checkbox-label .owt_registration__custom-checkbox {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.owt_registration__checkbox:checked + .owt_registration__checkbox-label .owt_registration__custom-checkbox::after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.owt_registration__checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.owt_registration__policy-link {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.owt_registration__policy-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.owt_registration__checkbox-error {
    color: var(--error-color);
    font-size: 0.8rem;
    min-height: 1rem;
}

.owt_registration__submit {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.owt_registration__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.owt_registration__submit:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.owt_success__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease;
}

.owt_success__content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.5s ease;
}

.owt_success__close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.owt_success__close-btn:hover {
    transform: rotate(150deg) scale(1.2);
}

.owt_success__icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease;
}

.owt_success__title {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.owt_success__message {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.owt_success__email {
    font-weight: 700;
    color: var(--primary-accent);
}

.owt_success__close {
    background: var(--primary-accent);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owt_success__close:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-enter {
    opacity: 0;
    transform: translateY(20px);
}

.modal-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-out;
}

.modal-exit {
    opacity: 1;
    transform: translateY(0);
}

.modal-exit-active {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from { 
        transform: scale(0);
    }
    to { 
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .owt_header__title {
        font-size: 2.5rem;
    }
    
    .owt_header__description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .owt_header__top {
        flex-direction: column;
        gap: 1rem;
    }
    
    .owt_header__title {
        font-size: 2rem;
    }
    
    .owt_header__benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .owt_header__benefit-card {
        width: 100%;
        max-width: 300px;
    }
    
    .owt_registration__form-container {
        max-width: 90%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .owt_header__content {
        padding: 1rem;
    }
    
    .owt_header__title {
        font-size: 1.8rem;
    }
    
    .owt_registration__form-container {
        padding: 1rem;
    }
    
    .owt_registration__input {
        padding: 0.7rem 0.8rem 0.7rem 2.5rem;
    }
    
    .owt_registration__input-icon {
        font-size: 1rem;
        left: 0.8rem;
    }
}

@media (max-width: 320px) {
    .owt_header__title {
        font-size: 1.5rem;
    }
    
    .owt_header__description {
        font-size: 0.9rem;
    }
}

.owt_hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.owt_hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../owt-img/owt-bg-img-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: bgPan 20s infinite alternate;
}

.owt_hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 39, 107, 0.85) 0%, rgba(67, 136, 204, 0.85) 100%);
    z-index: 1;
}

.owt_hero__content {
    position: relative;
    z-index: 2;
    max-width: 1526px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.owt_hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.owt_hero__description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    opacity: 0.9;
}

.owt_hero__benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto;
    flex-wrap: wrap;
}

.owt_hero__benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    width: 220px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.owt_hero__benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.owt_hero__benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.owt_hero__benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.owt_hero__cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1E276B;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.owt_hero__cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.owt_hero__cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes bgPan {
    0% { background-position: 10% 0%; }
    100% { background-position: 90% 100%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .owt_hero__title {
        font-size: 3rem;
    }
    
    .owt_hero__description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .owt_hero__title {
        font-size: 2.5rem;
    }
    
    .owt_hero__benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .owt_hero__benefit-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .owt_hero__title {
        font-size: 2rem;
    }
    
    .owt_hero__description {
        font-size: 1rem;
    }
    
    .owt_hero__content {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .owt_hero__title {
        font-size: 1.8rem;
    }
}

:root {
    --countdown-primary: #ff4d4d;
    --countdown-secondary: #ff9500;
    --countdown-accent: #fff200;
    --countdown-text: #ffffff;
    --countdown-bg: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
}

.owt_countdown {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: var(--countdown-bg);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    color: var(--countdown-text);
    text-align: center;
}

.owt_countdown__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="10" cy="70" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.3)"/></svg>');
    background-size: 50px 50px;
    animation: particlesMove 20s linear infinite;
    z-index: 1;
}

.owt_countdown__content {
    position: relative;
    z-index: 2;
    max-width: 1526px;
    width: 100%;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.owt_countdown__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.owt_countdown__description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

.owt_countdown__timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto;
    flex-wrap: wrap;
}

.owt_countdown__time-block {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.owt_countdown__time-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.owt_countdown__time-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--countdown-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 242, 0, 0.5);
    position: relative;
}

.owt_countdown__time-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    display: block;
}

.owt_countdown__jackpot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto;
    animation: pulse 2s infinite;
}

.owt_countdown__jackpot-icon {
    font-size: 3rem;
    color: var(--countdown-accent);
}

.owt_countdown__jackpot-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #ff4d4d, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.owt_countdown__cta {
    background: linear-gradient(135deg, var(--countdown-primary) 0%, var(--countdown-secondary) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 2rem;
}

.owt_countdown__cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.owt_countdown__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.owt_countdown__cta:hover::before {
    left: 100%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particlesMove {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .owt_countdown__title {
        font-size: 2.5rem;
    }
    
    .owt_countdown__time-value {
        font-size: 3rem;
    }
    
    .owt_countdown__jackpot-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .owt_countdown__timer {
        gap: 1rem;
    }
    
    .owt_countdown__time-block {
        min-width: 100px;
        padding: 1rem 0.5rem;
    }
    
    .owt_countdown__time-value {
        font-size: 2.5rem;
    }
    
    .owt_countdown__jackpot-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .owt_countdown__title {
        font-size: 2rem;
    }
    
    .owt_countdown__timer {
        gap: 0.5rem;
    }
    
    .owt_countdown__time-block {
        min-width: 80px;
    }
    
    .owt_countdown__time-value {
        font-size: 2rem;
    }
    
    .owt_countdown__time-label {
        font-size: 0.8rem;
    }
    
    .owt_countdown__jackpot-amount {
        font-size: 1.8rem;
    }
    
    .owt_countdown__cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

:root {
    --about-primary: #1a2a6c;
    --about-secondary: #b21f1f;
    --about-accent: #fdbb2d;
    --about-text: #333333;
    --about-bg: #f8f9fa;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.owt_about {
    background-color: var(--about-bg);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.owt_about__container {
    max-width: 1526px;
    width: 100%;
    margin: 0 auto;
}

.owt_about__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.owt_about__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--about-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.owt_about__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--about-accent);
    border-radius: 2px;
}

.owt_about__description {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--about-text);
    margin-bottom: 2rem;
}

.owt_about__image-container {
    width: 100%;
    max-width: 1100px;
    height: 100%;
    max-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.owt_about__image-container:hover {
    transform: translateY(-10px);
}

.owt_about__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.owt_about__image:hover {
    transform: scale(1.05);
}

.owt_benefits {
    text-align: center;
}

.owt_benefits__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--about-primary);
    margin-bottom: 3rem;
    position: relative;
}

.owt_benefits__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--about-accent);
    border-radius: 2px;
}

.owt_benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.owt_benefits__card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    max-width: 350px;
    width: 100%;
}

.owt_benefits__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.owt_benefits__card:nth-child(4) {
    margin-left: 100%;
}

.owt_benefits__card:nth-child(5) {
    margin-right: -100%;
}

.owt_benefits__icon {
    font-size: 2.5rem;
    color: var(--about-accent);
    margin-bottom: 1.5rem;
}

.owt_benefits__card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--about-primary);
    margin-bottom: 1rem;
}

.owt_benefits__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--about-text);
}

@media (max-width: 1024px) {
    .owt_benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .owt_benefits__card:nth-child(4) {
        margin-left: 0;
    }

    .owt_benefits__card:nth-child(5) {
        margin-right: 0;
    }

    .owt_benefits__card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 350px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .owt_about {
        padding: 3rem 1.5rem;
    }

    .owt_about__title,
    .owt_benefits__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .owt_benefits__grid {
        grid-template-columns: 1fr;
    }

    .owt_about__title,
    .owt_benefits__title {
        font-size: 1.8rem;
    }

    .owt_about__description {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owt_about__info,
.owt_benefits {
    animation: fadeInUp 0.8s ease;
}

.owt_benefits__card {
    animation: fadeInUp 0.8s ease;
}

.owt_benefits__card:nth-child(1) { animation-delay: 0.1s; }
.owt_benefits__card:nth-child(2) { animation-delay: 0.2s; }
.owt_benefits__card:nth-child(3) { animation-delay: 0.3s; }
.owt_benefits__card:nth-child(4) { animation-delay: 0.4s; }
.owt_benefits__card:nth-child(5) { animation-delay: 0.5s; }

:root {
    --ticket-primary: #2c3e50;
    --ticket-secondary: #3498db;
    --ticket-accent: #e74c3c;
    --ticket-text: #333;
    --ticket-light: #ecf0f1;
    --ticket-success: #2ecc71;
    --ticket-error: #e74c3c;
    --ticket-number: #3498db;
    --ticket-winner: #e74c3c;
}

.owt_ticket-check {
    padding: 4rem 2rem;
    background-color: var(--ticket-light);
}

.owt_ticket-check__container {
    max-width: 1526px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.owt_ticket-check__form-block,
.owt_ticket-check__winners-block {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.owt_ticket-check__title,
.owt_ticket-check__winners-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ticket-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.owt_ticket-check__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.owt_ticket-check__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.owt_ticket-check__label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--ticket-primary);
}

.owt_ticket-check__input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.owt_ticket-check__input:focus {
    border-color: var(--ticket-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.owt_ticket-check__input.error {
    border-color: var(--ticket-error);
}

.owt_ticket-check__error {
    color: var(--ticket-error);
    font-size: 0.8rem;
    min-height: 1rem;
}

.owt_ticket-check__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.owt_ticket-check__checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.owt_ticket-check__checkbox {
    display: none;
}

.owt_ticket-check__custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.owt_ticket-check__checkbox:checked + .owt_ticket-check__checkbox-label .owt_ticket-check__custom-checkbox {
    background-color: var(--ticket-secondary);
    border-color: var(--ticket-secondary);
}

.owt_ticket-check__checkbox:checked + .owt_ticket-check__checkbox-label .owt_ticket-check__custom-checkbox::after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.owt_ticket-check__checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.owt_ticket-check__policy-link {
    color: var(--ticket-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.owt_ticket-check__policy-link:hover {
    color: var(--ticket-primary);
    text-decoration: underline;
}

.owt_ticket-check__checkbox-error {
    color: var(--ticket-error);
    font-size: 0.8rem;
    min-height: 1rem;
}

.owt_ticket-check__submit {
    background: var(--ticket-secondary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    opacity: 0.5;
}

.owt_ticket-check__submit.active {
    opacity: 1;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.owt_ticket-check__submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
}

.owt_ticket-check__submit:disabled {
    cursor: not-allowed;
    background: #bdc3c7;
}

.owt_ticket-check__winners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.owt_ticket-check__winner-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.owt_ticket-check__winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.owt_ticket-check__winner-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--ticket-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.owt_ticket-check__winner-numbers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.owt_ticket-check__number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ticket-number);
    color: white;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.owt_ticket-check__number.winner {
    background-color: var(--ticket-winner);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.owt_ticket-check__winner-prize {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ticket-primary);
    text-align: center;
}

.owt_ticket-check__success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.owt_ticket-check__success-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.5s ease;
}

.owt_ticket-check__success-close,
.owt_ticket-check__success-close-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

.owt_ticket-check__success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--ticket-primary);
}

.owt_ticket-check__success-close:hover {
    transform: rotate(90deg);
    color: var(--ticket-accent);
}

.owt_ticket-check__success-icon {
    font-size: 4rem;
    color: var(--ticket-success);
    margin-bottom: 1rem;
}

.owt_ticket-check__success-title {
    font-family: 'Poppins', sans-serif;
    color: var(--ticket-primary);
    margin-bottom: 1rem;
}

.owt_ticket-check__success-message {
    margin-bottom: 1.5rem;
    color: var(--ticket-text);
}

.owt_ticket-check__success-email {
    font-weight: 700;
    color: var(--ticket-secondary);
}

.owt_ticket-check__success-close-btn {
    background: var(--ticket-secondary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.owt_ticket-check__success-close-btn:hover {
    background: var(--ticket-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.owt_ticket-check__submit.active {
    background-color: #4CAF50;
}

.owt_ticket-check__submit.semi-active {
    background-color: #FFC107;
    animation: pulse 0.5s 2;
}

.owt_ticket-check__checkbox-group.checked {
    border-color: #4CAF50;
}

@keyframes bounceIn {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .owt_ticket-check__container {
        grid-template-columns: 1fr;
    }
    
    .owt_ticket-check__winners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .owt_ticket-check__winners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .owt_ticket-check {
        padding: 2rem 1rem;
    }
    
    .owt_ticket-check__form-block,
    .owt_ticket-check__winners-block {
        padding: 1.5rem;
    }
    
    .owt_ticket-check__title,
    .owt_ticket-check__winners-title {
        font-size: 1.5rem;
    }
    
    .owt_ticket-check__winners-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --faq-primary: #2c3e50;
    --faq-secondary: #3498db;
    --faq-accent: #e74c3c;
    --faq-text: #333;
    --faq-light: #ecf0f1;
}

.owt_faq {
    padding: 4rem 2rem;
    background-color: var(--faq-light);
}

.owt_faq__container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.owt_faq__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--faq-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.owt_faq__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--faq-secondary);
    border-radius: 2px;
}

.owt_faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.owt_faq__item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owt_faq__item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.owt_faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--faq-primary);
    transition: all 0.3s ease;
}

.owt_faq__question:hover {
    background: #f8f9fa;
}

.owt_faq__question.active {
    background: var(--faq-secondary);
    color: white;
}

.owt_faq__question.active .owt_faq__icon {
    transform: rotate(45deg);
    color: white;
}

.owt_faq__question-text {
    margin-right: 1rem;
}

.owt_faq__icon {
    font-size: 1.2rem;
    color: var(--faq-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.owt_faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.owt_faq__answer.active {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.owt_faq__answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--faq-text);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.owt_faq__item {
    animation: fadeIn 0.5s ease;
}

.owt_faq__item:nth-child(1) { animation-delay: 0.1s; }
.owt_faq__item:nth-child(2) { animation-delay: 0.2s; }
.owt_faq__item:nth-child(3) { animation-delay: 0.3s; }
.owt_faq__item:nth-child(4) { animation-delay: 0.4s; }
.owt_faq__item:nth-child(5) { animation-delay: 0.5s; }
.owt_faq__item:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .owt_faq {
        padding: 3rem 1.5rem;
    }
    
    .owt_faq__title {
        font-size: 2rem;
    }
    
    .owt_faq__question {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .owt_faq {
        padding: 2rem 1rem;
    }
    
    .owt_faq__title {
        font-size: 1.8rem;
    }
    
    .owt_faq__answer.active {
        padding: 0 1.2rem 1.2rem;
    }
}

:root {
    --testimonials-primary: #2c3e50;
    --testimonials-secondary: #3498db;
    --testimonials-accent: #e74c3c;
    --testimonials-text: #333;
    --testimonials-light: #f8f9fa;
    --testimonials-rating: #ffc107;
}

.owt_testimonials {
    padding: 5rem 2rem;
    background-color: var(--testimonials-light);
}

.owt_testimonials__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.owt_testimonials__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--testimonials-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.owt_testimonials__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--testimonials-secondary);
    border-radius: 2px;
}

.owt_testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.owt_testimonials__card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.owt_testimonials__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.owt_testimonials__card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.owt_testimonials__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    background-color: #eee;
    border: 3px solid var(--testimonials-secondary);
}

.owt_testimonials__author-info {
    flex-grow: 1;
}

.owt_testimonials__author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--testimonials-primary);
    margin-bottom: 0.3rem;
}

.owt_testimonials__rating {
    color: var(--testimonials-rating);
    font-size: 1rem;
}

.owt_testimonials__quote-icon {
    font-size: 2rem;
    color: var(--testimonials-secondary);
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 0;
}

.owt_testimonials__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--testimonials-text);
    margin: 0;
    position: relative;
    z-index: 1;
}

.owt_testimonials__cta {
    display: block;
    margin: 0 auto;
    background: var(--testimonials-secondary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.owt_testimonials__cta:hover {
    background: var(--testimonials-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owt_testimonials__card {
    animation: fadeInUp 0.6s ease;
}

.owt_testimonials__card:nth-child(1) { animation-delay: 0.1s; }
.owt_testimonials__card:nth-child(2) { animation-delay: 0.2s; }
.owt_testimonials__card:nth-child(3) { animation-delay: 0.3s; }
.owt_testimonials__card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 768px) {
    .owt_testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .owt_testimonials {
        padding: 3rem 1.5rem;
    }
    
    .owt_testimonials__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .owt_testimonials {
        padding: 2rem 1rem;
    }
    
    .owt_testimonials__title {
        font-size: 1.8rem;
    }
    
    .owt_testimonials__card {
        padding: 1.5rem;
    }
    
    .owt_testimonials__avatar {
        width: 50px;
        height: 50px;
    }
    
    .owt_testimonials__author-name {
        font-size: 1.1rem;
    }
    
    .owt_testimonials__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

:root {
    --responsible-primary: #1a5276;
    --responsible-secondary: #2980b9;
    --responsible-accent: #e74c3c;
    --responsible-text: #ffffff;
    --responsible-light: rgba(255, 255, 255, 0.9);
    --responsible-dark: rgba(0, 0, 0, 0.7);
}

.owt_responsible {
    position: relative;
    width: 100%;
    padding: 6rem 2rem;
    color: var(--responsible-text);
    text-align: center;
    overflow: hidden;
}

.owt_responsible__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../owt-img/owt-bg-img-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.7);
}

.owt_responsible__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
    z-index: 1;
}

.owt_responsible__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.owt_responsible__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px var(--responsible-dark);
}

.owt_responsible__text {
    background: var(--responsible-light);
    color: var(--responsible-primary);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.owt_responsible__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.owt_responsible__text a {
    color: var(--responsible-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.owt_responsible__text a:hover {
    color: var(--responsible-accent);
    text-decoration: underline;
}

.owt_responsible__resources {
    background: var(--responsible-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.owt_responsible__resources-title {
    font-family: 'Poppins', sans-serif;
    color: var(--responsible-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.owt_responsible__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.owt_responsible__link {
    display: inline-block;
    transition: all 0.3s ease;
}

.owt_responsible__link:hover {
    transform: translateY(-5px);
}

.owt_responsible__link-image {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    object-fit: contain;
    transition: all 0.3s ease;
}

.owt_responsible__link:hover .owt_responsible__link-image {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owt_responsible__title {
    animation: fadeInUp 0.8s ease;
}

.owt_responsible__text {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.owt_responsible__resources {
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media (max-width: 768px) {
    .owt_responsible {
        padding: 4rem 1.5rem;
    }
    
    .owt_responsible__title {
        font-size: 2.2rem;
    }
    
    .owt_responsible__text,
    .owt_responsible__resources {
        padding: 1.5rem;
    }
    
    .owt_responsible__links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .owt_responsible {
        padding: 3rem 1rem;
    }
    
    .owt_responsible__title {
        font-size: 1.8rem;
    }
    
    .owt_responsible__text p {
        font-size: 1rem;
    }
    
    .owt_responsible__links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .owt_responsible__link-image {
        width: 150px;
        height: 70px;
    }
}

:root {
    --footer-bg: #2c3e50;
    --footer-text: #ecf0f1;
    --footer-accent: #3498db;
    --footer-border: rgba(255, 255, 255, 0.1);
}

.owt_footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--footer-border);
}

.owt_footer__container {
    max-width: 1526px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.owt_footer__left,
.owt_footer__right {
    flex: 1;
    min-width: 200px;
}

.owt_footer__center {
    flex: 0 0 auto;
}

.owt_footer__copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.owt_footer__rights {
    font-size: 0.9rem;
    opacity: 0.8;
}

.owt_footer__logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.owt_footer__logo-link:hover {
    transform: scale(1.05);
}

.owt_footer__logo {
    display: block;
    height: auto;
}

.owt_footer__nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.owt_footer__nav-link {
    color: var(--footer-text);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.owt_footer__nav-link:hover {
    color: var(--footer-accent);
}

.owt_footer__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--footer-accent);
    transition: width 0.3s ease;
}

.owt_footer__nav-link:hover::after {
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.owt_footer {
    animation: fadeIn 0.8s ease;
}

@media (max-width: 768px) {
    .owt_footer__container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .owt_footer__left,
    .owt_footer__right {
        min-width: 100%;
    }
    
    .owt_footer__nav-list {
        justify-content: center;
    }
    
    .owt_footer__logo {
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .owt_footer {
        padding: 2rem 1rem;
    }

    .owt_footer__logo {
        width: 100%;
    }
    
    .owt_footer__nav-list {
        gap: 1rem;
    }
}

.owt_cookies__container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f9fa;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9998;
  display: none;
}

.owt_cookies__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.owt_cookies__text {
  flex: 1;
  padding-right: 20px;
}

.owt_cookies__description {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.owt_cookies__link {
  color: #3498db;
  text-decoration: underline;
}

.owt_cookies__accept {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.owt_cookies__accept:hover {
  background-color: #27ae60;
}

.owt_age__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.owt_age__container {
  background-color: #2c3e50;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.owt_age__content {
  text-align: center;
}

.owt_age__title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #ecf0f1;
  margin-bottom: 15px;
}

.owt_age__text {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #bdc3c7;
  margin-bottom: 25px;
  line-height: 1.5;
}

.owt_age__buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.owt_age__confirm {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.owt_age__confirm:hover {
  background-color: #2980b9;
}

.owt_age__decline {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.owt_age__decline:hover {
  background-color: #c0392b;
}

@media (max-width: 768px) {
  .owt_coo__ies-content {
    flex-direction: column;
    text-align: center;
  }
  
  .owt_coo__ies-text {
    padding-right: 0;
    margin-bottom: 15px;
  }
  
  .owt_age__buttons {
    flex-direction: column;
  }
  
  .owt_age__confirm,
  .owt_age__decline {
    width: 100%;
  }
}

.owtpage_contact__hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-image: url('../owt-img/owt-bg-img-3.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  color: white;
}

.owtpage_contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.owtpage_contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.owtpage_contact__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.owtpage_contact__description {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.owtpage_contact__form-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.owtpage_contact__form-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.owtpage_contact__form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.owtpage_contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.owtpage_contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.owtpage_contact__error {
  color: #e74c3c;
  font-size: 0.85rem;
  min-height: 1.2rem;
}

.owtpage_contact__input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
}

.owtpage_contact__input:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.owtpage_contact__input.error {
  border-color: #e74c3c;
}

.owtpage_contact__textarea {
  min-height: 150px;
  resize: vertical;
}

.owtpage_contact__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.owtpage_contact__checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.owtpage_contact__checkbox {
  display: none;
}

.owtpage_contact__custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.owtpage_contact__checkbox:checked + .owtpage_contact__checkbox-label .owtpage_contact__custom-checkbox {
  background-color: #3498db;
  border-color: #3498db;
}

.owtpage_contact__checkbox:checked + .owtpage_contact__checkbox-label .owtpage_contact__custom-checkbox::after {
  content: '\f00c';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8rem;
}

.owtpage_contact__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.owtpage_contact__policy-link {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.owtpage_contact__policy-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

.owtpage_contact__checkbox-error {
  color: #e74c3c;
  font-size: 0.85rem;
  min-height: 1.2rem;
}

.owtpage_contact__submit {
  background: #3498db;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.owtpage_contact__submit:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  opacity: 0.7;
}

.owtpage_contact__submit:not(:disabled):hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.owtpage_contact__success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.owtpage_contact__success-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: bounceIn 0.5s ease;
}

.owtpage_contact__success-close,
.owtpage_contact__success-close-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.owtpage_contact__success-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #2c3e50;
}

.owtpage_contact__success-close:hover {
  transform: rotate(90deg);
  color: #e74c3c;
}

.owtpage_contact__success-icon {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 1rem;
}

.owtpage_contact__success-title {
  font-family: 'Poppins', sans-serif;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.owtpage_contact__success-message {
  margin-bottom: 1.5rem;
  color: #333;
}

.owtpage_contact__success-email {
  font-weight: 700;
  color: #3498db;
}

.owtpage_contact__success-close-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.owtpage_contact__success-close-btn:hover {
  background: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.owtpage_contact__submit.active {
    background-color: #4CAF50;
}

.owtpage_contact__submit.semi-active {
    background-color: #FFC107;
}

.owtpage_contact__input.error {
    border-color: #f44336;
}

.owtpage_contact__checkbox-group.checked {
    border-color: #4CAF50;
}

@media (max-width: 768px) {
  .owtpage_contact__hero {
    min-height: 300px;
    padding: 3rem 1.5rem;
  }
  
  .owtpage_contact__title {
    font-size: 2.2rem;
  }
  
  .owtpage_contact__description {
    font-size: 1rem;
  }
  
  .owtpage_contact__form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .owtpage_contact__hero {
    min-height: 250px;
    padding: 2rem 1rem;
  }
  
  .owtpage_contact__title {
    font-size: 1.8rem;
  }
  
  .owtpage_contact__form-section {
    padding: 2rem 1rem;
  }
}

.owtpage_cookie__hero {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(135deg, #1a5276 0%, #3498db 100%);
  padding: 4rem 2rem;
  color: white;
}

.owtpage_cookie__hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.owtpage_cookie__title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.owtpage_cookie__content {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.owtpage_cookie__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.owtpage_cookie__item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.owtpage_cookie__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.owtpage_cookie__icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.owtpage_cookie__item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.owtpage_cookie__item-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

@media (max-width: 1024px) {
  .owtpage_cookie__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .owtpage_cookie__hero {
    min-height: 250px;
    padding: 3rem 1.5rem;
  }
  
  .owtpage_cookie__title {
    font-size: 2.5rem;
  }
  
  .owtpage_cookie__content {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .owtpage_cookie__hero {
    min-height: 200px;
    padding: 2rem 1rem;
  }
  
  .owtpage_cookie__title {
    font-size: 2rem;
  }
  
  .owtpage_cookie__content {
    padding: 2rem 1rem;
  }
  
  .owtpage_cookie__container {
    grid-template-columns: 1fr;
  }
  
  .owtpage_cookie__item {
    padding: 1.5rem;
  }
  
  .owtpage_cookie__icon {
    font-size: 2rem;
  }
  
  .owtpage_cookie__item-title {
    font-size: 1.2rem;
  }
}

.owtpage_privacy__hero {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(135deg, #1a5276 0%, #3498db 100%);
  padding: 4rem 2rem;
  color: white;
}

.owtpage_privacy__hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.owtpage_privacy__title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.owtpage_privacy__content {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.owtpage_privacy__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.owtpage_privacy__item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.owtpage_privacy__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.owtpage_privacy__icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.owtpage_privacy__item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.owtpage_privacy__item-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

@media (max-width: 1024px) {
  .owtpage_privacy__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .owtpage_privacy__hero {
    min-height: 250px;
    padding: 3rem 1.5rem;
  }
  
  .owtpage_privacy__title {
    font-size: 2.5rem;
  }
  
  .owtpage_privacy__content {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .owtpage_privacy__hero {
    min-height: 200px;
    padding: 2rem 1rem;
  }
  
  .owtpage_privacy__title {
    font-size: 2rem;
  }
  
  .owtpage_privacy__content {
    padding: 2rem 1rem;
  }
  
  .owtpage_privacy__container {
    grid-template-columns: 1fr;
  }
  
  .owtpage_privacy__item {
    padding: 1.5rem;
  }
  
  .owtpage_privacy__icon {
    font-size: 2rem;
  }
  
  .owtpage_privacy__item-title {
    font-size: 1.2rem;
  }
}