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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rakkas', cursive;
    font-weight: normal;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.uj_container {
    max-width: 1910px;
    margin: 0 auto;
    padding: 0 15px;
}

.uj_header {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.uj_header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uj_header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.uj_header__logo img {
    width: 40px;
    height: 40px;
}

.uj_header__nav ul {
    display: flex;
    gap: 25px;
}

.uj_header__nav a {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.uj_header__nav a:hover {
    color: #f0f0f0;
    transform: translateY(-2px);
}

.uj_header__burger {
    display: none;
    color: #fff;
    font-size: 28px;
    background: transparent;
    padding: 5px;
    z-index: 101;
}

.uj_header__nav {
    display: flex;
}

.uj_header__nav ul {
    flex-direction: row;
    gap: 25px;
}

.uj_premium {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.uj_premium__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../uj-images/uj-bg-image-1.jpg') center/cover no-repeat;
    z-index: -1;
}

.uj_premium__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.87);
}

.uj_premium__content {
    width: 100%;
    padding: 40px 0;
}

.uj_premium h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.uj_premium p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.uj_premium__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.uj_premium__card {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    width: 180px;
    transition: all 0.3s ease;
}

.uj_premium__card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.3);
}

.uj_premium__card i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.uj_benefits {
    padding: 80px 0;
    background: #f9f9f9;
}

.uj_benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #FF8C00;
}

.uj_benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.uj_benefits__card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.uj_benefits__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.uj_benefits__card i {
    font-size: 40px;
    color: #FF8C00;
    margin-bottom: 15px;
}

.uj_benefits__card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.uj_benefits__card p {
    color: #666;
}

.uj_about {
    padding: 80px 0;
}

.uj_about__wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.uj_about__content {
    flex: 1;
}

.uj_about__image {
    flex: 1;
}

.uj_about h2 {
    font-size: 36px;
    color: #FF8C00;
    margin-bottom: 20px;
}

.uj_about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.uj_about__features {
    display: flex;
    gap: 20px;
}

.uj_about__feature {
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    min-width: 120px;
}

.uj_about__feature i {
    font-size: 28px;
    color: #FF8C00;
    margin-bottom: 5px;
    display: block;
}

.uj_welcome {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.uj_welcome__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../uj-images/uj-bg-image-2.jpg') center/cover no-repeat;
    z-index: -1;
}

.uj_welcome__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.86);
}

.uj_welcome__content {
    width: 100%;
    text-align: center;
    padding: 60px 0;
}

.uj_welcome h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.uj_welcome p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.uj_welcome__icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 36px;
}

.uj_welcome__icons i {
    transition: all 0.3s ease;
}

.uj_welcome__icons i:hover {
    transform: scale(1.2);
    color: #FFD700;
}

.uj_faq {
    position: relative;
    padding: 80px 0;
}

.uj_faq__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../uj-images/uj-bg-image-3.jpg') center/cover no-repeat;
    z-index: -1;
    opacity: 0.1;
}

.uj_faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #FF8C00;
}

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

.uj_faq__item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.uj_faq__question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.uj_faq__question:hover {
    background: #f5f5f5;
}

.uj_faq__question i {
    transition: transform 0.3s ease;
}

.uj_faq__item.active .uj_faq__question i {
    transform: rotate(180deg);
}

.uj_faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.uj_faq__item.active .uj_faq__answer {
    max-height: 200px;
}

.uj_faq__answer p {
    padding: 20px;
    color: #555;
}

.uj_reviews {
    padding: 80px 0;
    background: #f9f9f9;
}

.uj_reviews h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #FF8C00;
}

.uj_reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.uj_reviews__card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.uj_reviews__card:nth-child(even) {
    flex-direction: row-reverse;
}

.uj_reviews__card img {
    width: 15%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    object-fit: cover;
}

.uj_reviews__content {
    padding: 30px;
    flex: 1;
    position: relative;
}

.uj_reviews__content i {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: rgba(255,140,0,0.1);
}

.uj_reviews__content p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.uj_reviews__content span {
    font-weight: 700;
    color: #FF8C00;
}

.uj_newsletter {
    position: relative;
    padding: 60px 0;
    color: #fff;
}

.uj_newsletter__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../uj-images/uj-bg-image-4.jpg') center/cover no-repeat;
    z-index: -1;
}

.uj_newsletter__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,140,0,0.9);
}

.uj_newsletter__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.uj_newsletter h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.uj_newsletter p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.uj_newsletter__form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.uj_newsletter__form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.uj_newsletter__form button {
    background: #000;
    color: #fff;
    padding: 0 25px;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.uj_newsletter__form button:hover {
    background: #333;
}

.uj_newsletter__success {
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
    position: relative;
}

.uj_newsletter__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
}

.uj_footer {
    background: #222;
    color: #fff;
    padding: 40px 0 20px;
}

.uj_footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.uj_footer__links a {
    transition: color 0.3s ease;
}

.uj_footer__links a:hover {
    color: #FF8C00;
}

.uj_footer__copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.uj_footer__copyright img {
    width: 60px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
}

.uj_footer__copyright p {
    color: #aaa;
}

.uj_cookies__overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 400px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(150%);
    animation: slideIn 0.8s forwards 1s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.uj_cookies__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uj_cookies__text {
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.uj_cookies__link {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    transition: all 0.3s ease;
}

.uj_cookies__link:hover {
    color: #f0f0f0;
}

.uj_cookies__button {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.uj_cookies__button:active {
    transform: translateY(1px) !important;
}

.uj_cookies__button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.uj_cookies__button:hover::after {
    opacity: 1;
    color: #fff;
}

@keyframes slideIn {
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 1280px) {
    .uj_benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .uj_reviews__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .uj_about__wrapper {
        flex-direction: column;
    }
    
    .uj_about__image {
        width: 100%;
        margin-top: 30px;
    }
    
    .uj_premium h1 {
        font-size: 42px;
    }
    
    .uj_premium p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .uj_header__nav {
        display: none;
    }

    .uj_header__burger {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1002;
    }
    
    .uj_header__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .uj_header__nav.active {
        transform: translateX(0);
    }
    
    .uj_header__nav ul {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .uj_header__nav a {
        font-size: 20px;
        padding: 10px;
    }
    
    .uj_premium h1 {
        font-size: 36px;
    }
    
    .uj_premium__features {
        gap: 15px;
    }
    
    .uj_premium__card {
        width: 150px;
        padding: 15px;
    }
    
    .uj_benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .uj_faq__question {
        padding: 15px;
        font-size: 16px;
    }
    
    .uj_newsletter__form {
        flex-direction: column;
    }
    
    .uj_newsletter__form input,
    .uj_newsletter__form button {
        border-radius: 30px;
        width: 100%;
    }
    
    .uj_newsletter__form button {
        margin-top: 10px;
        padding: 15px;
    }
    
    .uj_cookies__overlay {
        max-width: 320px;
        padding: 15px;
    }
    
    .uj_cookies__text {
        font-size: 13px;
    }
    
    .uj_cookies__button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .uj_header__burger {
        font-size: 24px;
        top: 12px;
        right: 12px;
    }
    
    .uj_header__nav ul {
        gap: 20px;
    }
    
    .uj_header__nav a {
        font-size: 18px;
    }

    .uj_premium h1 {
        font-size: 32px;
    }
    
    .uj_premium p {
        font-size: 16px;
    }
    
    .uj_premium__features {
        gap: 10px;
    }
    
    .uj_premium__card {
        width: calc(50% - 10px);
    }
    
    .uj_about__features {
        flex-direction: column;
    }
    
    .uj_welcome h2 {
        font-size: 32px;
    }
    
    .uj_welcome p {
        font-size: 16px;
    }
    
    .uj_welcome__icons {
        gap: 15px;
        font-size: 28px;
    }

    .uj_reviews__card, .uj_reviews__card:nth-child(even) {
        flex-direction: column;
    }

    .uj_reviews__card img {
        width: 50%;
    }
    
    .uj_cookies__overlay {
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }
}

@media (max-width: 320px) {
    .uj_header__logo span {
        display: none;
    }
    
    .uj_premium__card {
        width: 100%;
    }
    
    .uj_cookies__overlay {
        padding: 12px;
    }
    
    .uj_cookies__text {
        font-size: 12px;
    }
    
    .uj_cookies__button {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.ujpg_policy__header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../uj-images/uj-bg-image-2.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.ujpg_policy__header h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeIn 1.5s ease;
}

.ujpg_policy__terms {
    background: #f9f5f0;
    padding: 60px 0;
}

.ujpg_container__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ujpg_policy__item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ujpg_policy__item:hover {
    transform: translateY(-10px);
}

.ujpg_policy__item i {
    font-size: 40px;
    color: #d35400;
    margin-bottom: 20px;
    background: #fde3d0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ujpg_policy__item h3 {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 15px;
}

.ujpg_policy__item p {
    color: #555;
    min-height: 120px;
}

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

@media (max-width: 1280px) {
    .ujpg_policy__header h1 {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .ujpg_policy__header {
        min-height: 50vh;
    }
}

@media (max-width: 768px) {
    .ujpg_policy__header h1 {
        font-size: 36px;
    }
    
    .ujpg_policy__item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .ujpg_policy__header h1 {
        font-size: 32px;
    }
    
    .ujpg_policy__item i {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
}

@media (max-width: 320px) {
    .ujpg_policy__header h1 {
        font-size: 28px;
    }
    
    .ujpg_policy__item {
        padding: 20px;
    }
}

.ujpg_privacy__banner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../uj-images/uj-bg-image-3.jpg') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.ujpg_privacy__banner h1 {
    font-size: 52px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: textGlow 2s infinite alternate;
}

.ujpg_policy__wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.ujpg_privacy__content {
    background: #fff9f2;
    padding: 80px 0;
}

.ujpg_privacy__card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid #d35400;
}

.ujpg_privacy__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.ujpg_privacy__card i {
    font-size: 42px;
    color: #d35400;
    margin-bottom: 25px;
    background: #fef0e6;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ujpg_privacy__card h2 {
    font-size: 28px;
    color: #d35400;
    margin-bottom: 20px;
}

.ujpg_privacy__card p {
    color: #555;
    min-height: 140px;
    line-height: 1.7;
}

@keyframes textGlow {
    from { text-shadow: 3px 3px 6px rgba(0,0,0,0.8); }
    to { text-shadow: 3px 3px 12px rgba(211,84,0,0.6); }
}

@media (max-width: 1280px) {
    .ujpg_privacy__banner h1 {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .ujpg_privacy__banner {
        min-height: 60vh;
    }
    
    .ujpg_privacy__card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .ujpg_privacy__banner h1 {
        font-size: 40px;
    }
    
    .ujpg_privacy__card i {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .ujpg_privacy__banner h1 {
        font-size: 34px;
    }
    
    .ujpg_privacy__card {
        padding: 25px;
    }
    
    .ujpg_privacy__card h2 {
        font-size: 24px;
    }
}

@media (max-width: 320px) {
    .ujpg_privacy__banner h1 {
        font-size: 30px;
    }
    
    .ujpg_privacy__card {
        padding: 20px;
    }
    
    .ujpg_privacy__card i {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
}