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

body {
    font-family: 'Hind', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0 auto;
}

.ju-header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    position: relative;
    z-index: 1000;
}

.ju-header_logowrap {
    display: flex;
    align-items: center;
}

.ju-header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFF8F0;
    font-family: 'Gloock', serif;
    font-size: 1.5rem;
}

.ju-header_logo img {
    height: 70px;
    margin-right: 10px;
}

.ju-header_nav {
    display: flex;
}

.ju-header_links {
    display: flex;
    list-style: none;
}

.ju-header_links li {
    margin-left: 30px;
}

.ju-header_links a {
    color: #FFF8F0;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.ju-header_links a:hover {
    color: #FFA500;
}

.ju-header_links i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.ju-header_burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.ju-header_burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #FFF8F0;
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .ju-header_links li {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .ju-header_container {
        flex-direction: column;
        padding: 15px 5%;
    }

    .ju-header_logowrap {
        width: 100%;
        justify-content: space-between;
    }

    .ju-header_nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .ju-header_nav.active {
        max-height: 500px;
        margin-top: 20px;
    }

    .ju-header_links {
        flex-direction: column;
        width: 100%;
    }

    .ju-header_links li {
        margin: 10px 0;
    }

    .ju-header_burger {
        display: flex;
    }

    .ju-header_burger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .ju-header_burger.active span:nth-child(2) {
        opacity: 0;
    }

    .ju-header_burger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.ju-premium_wrapper {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    overflow: hidden;
}

.ju-premium_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../ju-image/ju-background-img-3.jpg') center/cover no-repeat;
    z-index: -1;
    filter: brightness(0.11);
}

.ju-premium_content {
    max-width: 1200px;
    text-align: center;
    color: #FFF8F0;
}

.ju-premium_title {
    font-family: 'Gloock', serif;
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

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

.ju-premium_card {
    background: rgba(255, 248, 240, 0.9);
    color: #5A3921;
    padding: 30px;
    border-radius: 10px;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease;
}

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

.ju-premium_card i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.ju-premium_card h3 {
    font-family: 'Gloock', serif;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.ju-premium_card p {
    font-size: 1rem;
}

.ju-premium_text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    animation: fadeIn 1.5s ease;
}

@media (max-width: 1024px) {
    .ju-premium_title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ju-premium_title {
        font-size: 2.5rem;
    }

    .ju-premium_card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .ju-premium_title {
        font-size: 2rem;
    }

    .ju-premium_text {
        font-size: 1rem;
    }
}

.ju-about_wrapper {
    display: flex;
    min-height: 80vh;
    background: #FFF8F0;
}

.ju-about_content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ju-about_title {
    font-family: 'Gloock', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 30px;
}

.ju-about_text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.ju-about_features {
    max-width: 750px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.ju-about_feature {
    display: flex;
    align-items: center;
    background: #8B4513;
    color: #FFF8F0;
    padding: 15px 20px;
    border-radius: 50px;
    transition: transform 0.3s;
}

.ju-about_feature:hover {
    transform: translateY(-5px);
}

.ju-about_feature i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.ju-about_feature p {
    font-size: 0.9rem;
}

.ju-about_image {
    flex: 1;
    position: relative;
}

.ju-about_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .ju-about_wrapper {
        flex-direction: column;
    }

    .ju-about_image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .ju-about_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ju-about_features {
        flex-direction: column;
    }
}

.ju-positives_wrapper {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #FFF8F0, #F5E6D8);
}

.ju-positives_title {
    font-family: 'Gloock', serif;
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 60px;
}

.ju-positives_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ju-positives_card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

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

.ju-positives_card i {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 20px;
}

.ju-positives_card h3 {
    font-family: 'Gloock', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #5A3921;
}

.ju-positives_card p {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 1024px) {
    .ju-positives_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ju-positives_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ju-positives_grid {
        grid-template-columns: 1fr;
    }
}

.ju-reviews_wrapper {
    padding: 100px 5%;
    background: #5A3921;
}

.ju-reviews_title {
    font-family: 'Gloock', serif;
    text-align: center;
    font-size: 2.5rem;
    color: #FFF8F0;
    margin-bottom: 60px;
}

.ju-reviews_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.ju-reviews_card {
    background: #FFF8F0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.ju-reviews_card:hover {
    transform: scale(1.03);
}

.ju-reviews_card img {
    width: 30%;
    height: auto;
    object-fit: cover;
}

.ju-reviews_content {
    padding: 25px;
    position: relative;
}

.ju-reviews_content i:first-child {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(139, 69, 19, 0.1);
}

.ju-reviews_content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.ju-reviews_content h4 {
    font-family: 'Gloock', serif;
    color: #8B4513;
    margin-bottom: 10px;
}

.ju-reviews_stars {
    color: #FFA500;
}

@media (max-width: 1024px) {
    .ju-reviews_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ju-reviews_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ju-reviews_container {
        grid-template-columns: 1fr;
    }
}

.ju-faq_wrapper {
    position: relative;
    min-height: 100vh;
    padding: 100px 5%;
    overflow: hidden;
}

.ju-faq_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../ju-image/ju-background-img-2.jpg') center/cover no-repeat;
    z-index: -1;
    filter: brightness(0.4);
}

.ju-faq_container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 248, 240, 0.9);
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ju-faq_title {
    font-family: 'Gloock', serif;
    color: #8B4513;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.ju-faq_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FFA500, #8B4513, #FFA500);
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

.ju-faq_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ju-faq_single {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ju-faq_single:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ju-faq_question {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: white;
}

.ju-faq_question h3 {
    flex: 1;
    margin: 0 15px;
    font-size: 1.2rem;
}

.ju-faq_question i:first-child {
    font-size: 1.5rem;
    color: #FFF8F0;
}

.ju-faq_arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ju-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: #FFF8F0;
}

.ju-faq_answer p {
    padding: 0 20px;
    color: #5A3921;
    line-height: 1.6;
}

.ju-faq_single.active .ju-faq_answer {
    max-height: 300px;
    padding: 20px 0;
}

.ju-faq_single.active .ju-faq_arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .ju-faq_title {
        font-size: 2rem;
    }
}

.ju-contact_wrapper {
    background: #5A3921;
    padding: 80px 5%;
}

.ju-contact_container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ju-contact_form {
    flex: 1;
    padding: 50px;
    background: #FFF8F0;
}

.ju-contact_form h2 {
    font-family: 'Gloock', serif;
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 30px;
}

.ju-contact_field {
    position: relative;
    margin-bottom: 30px;
}

.ju-contact_field input,
.ju-contact_field textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    background: transparent;
    z-index: 1;
    position: relative;
}

#subscribeEmail {
    color: #fff;
}

.ju-contact_field textarea {
    min-height: 120px;
    resize: vertical;
}

.ju-contact_field label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    transition: all 0.3s;
    background: linear-gradient(135deg, rgb(255, 165, 0), rgb(255, 140, 0));
    padding: 2px 5px;
    border-radius: 25%;
    z-index: 0;
}

.ju-contact_field input:focus,
.ju-contact_field textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.ju-contact_field input:focus + label,
.ju-contact_field textarea:focus + label,
.ju-contact_field input:valid + label,
.ju-contact_field textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #8B4513;
    z-index: 2;
}

.ju-contact_hint {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.ju-contact_field input:invalid:not(:focus):not(:placeholder-shown),
.ju-contact_field textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.ju-contact_field input:invalid:not(:focus):not(:placeholder-shown) + label + .ju-contact_hint,
.ju-contact_field textarea:invalid:not(:focus):not(:placeholder-shown) + label + .ju-contact_hint {
    opacity: 1;
    color: #ff6b6b;
}

.ju-contact_form button {
    background: #8B4513;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.ju-contact_subscribe button {
    background: linear-gradient(135deg, rgb(255, 165, 0), rgb(255, 140, 0));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.ju-contact_form button:disabled,
.ju-contact_subscribe button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.ju-contact_form button:not(:disabled):hover {
    background: #A0522D;
}

.ju-contact_subscribe button:not(:disabled):hover {
    background: linear-gradient(135deg, rgb(255, 165, 0), rgb(255, 140, 0));
}

.ju-contact_success {
    display: none;
    text-align: center;
    padding: 30px;
    background: rgba(139, 195, 74, 0.88);
    border-radius: 5px;
    margin-top: 20px;
}

.ju-contact_success i {
    font-size: 3rem;
    color: #8BC34A;
    margin-bottom: 15px;
}

.ju-contact_success p {
    font-size: 1.2rem;
    color: #5A3921;
    margin-bottom: 5px;
}

.ju-contact_success span {
    font-size: 0.9rem;
    color: #666;
}

.ju-contact_subscribe {
    flex: 1;
    padding: 50px;
    background: url('../ju-image/ju-background-img-1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ju-contact_subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.8);
}

.ju-contact_subcontent {
    position: relative;
    z-index: 1;
    color: white;
    width: 100%;
    max-width: 500px;
}

.ju-contact_subscribe h2 {
    font-family: 'Gloock', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.ju-contact_subscribe p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .ju-contact_container {
        flex-direction: column;
    }

    .ju-contact_subscribe {
        padding: 50px;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .ju-contact_form h2,
    .ju-contact_subscribe h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ju-contact_form,
    .ju-contact_subscribe {
        padding: 30px 20px;
    }
}

.ju-footer_container {
    background: #333;
    color: white;
    padding: 50px 5% 20px;
}

.ju-footer_container img {
    height: 80px;
}

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

.ju-footer_links a {
    color: #FFF8F0;
    text-decoration: none;
    transition: color 0.3s;
}

.ju-footer_links a:hover {
    color: #FFA500;
}

.ju-footer_copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ju-footer_copyright p {
    font-size: 0.9rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .ju-footer_links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.ju-cookies_notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FFF8F0;
    color: #5A3921;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    display: flex;
    align-items: center;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s ease;
}

.ju-cookies_notice.show {
    transform: translateX(0);
}

.ju-cookies_content {
    flex: 1;
    margin-right: 15px;
}

.ju-cookies_content p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.ju-cookies_content a {
    color: #8B4513;
    font-size: 0.9rem;
    text-decoration: underline;
}

.ju-cookies_accept {
    background: #8B4513;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.ju-cookies_accept:hover {
    background: #A0522D;
}

@media (max-width: 480px) {
    .ju-cookies_notice {
        flex-direction: column;
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }

    .ju-cookies_content {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .ju-cookies_accept {
        width: 100%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.jupage-privacy_header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background: linear-gradient(rgba(90, 57, 33, 0.7), rgba(90, 57, 33, 0.7)), url('../ju-image/ju-background-img-4.jpg') center/cover no-repeat;
    color: #FFF8F0;
    text-align: center;
}

.jupage-privacy_headercontent {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.jupage-privacy_header h1 {
    font-family: 'Gloock', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.jupage-privacy_header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.jupage-privacy_header i {
    font-size: 4rem;
    color: #FFA500;
    animation: pulse 2s infinite;
}

.jupage-privacy_content {
    padding: 80px 5%;
    background: #FFF8F0;
}

.jupage-privacy_item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.jupage-privacy_item:hover {
    transform: translateY(-5px);
}

.jupage-privacy_item i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    display: block;
}

.jupage-privacy_item h2 {
    font-family: 'Gloock', serif;
    color: #5A3921;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.jupage-privacy_item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

@media (max-width: 1280px) {
    .jupage-privacy_header h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 1024px) {
    .jupage-privacy_header {
        min-height: 50vh;
    }
    
    .jupage-privacy_item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .jupage-privacy_header h1 {
        font-size: 2.3rem;
    }
    
    .jupage-privacy_header p {
        font-size: 1.1rem;
    }
    
    .jupage-privacy_item {
        padding: 20px;
    }
    
    .jupage-privacy_item h2 {
        font-size: 1.5rem;
    }
    
    .jupage-privacy_item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .jupage-privacy_header {
        min-height: 40vh;
        padding: 60px 5%;
    }
    
    .jupage-privacy_header h1 {
        font-size: 2rem;
    }
    
    .jupage-privacy_header i {
        font-size: 3rem;
    }
    
    .jupage-privacy_content {
        padding: 50px 5%;
    }
}

@media (max-width: 320px) {
    .jupage-privacy_header h1 {
        font-size: 1.8rem;
    }
    
    .jupage-privacy_header p {
        font-size: 1rem;
    }
    
    .jupage-privacy_item i {
        font-size: 2rem;
    }
    
    .jupage-privacy_item h2 {
        font-size: 1.3rem;
    }
}

.jupage-cookie_hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.8)), url('../ju-image/ju-background-img-4.jpg') center/cover no-repeat;
    color: #FFF8F0;
    text-align: center;
}

.jupage-cookie_herocontent {
    max-width: 800px;
    animation: cookieFloat 3s ease infinite alternate;
}

.jupage-cookie_hero h1 {
    font-family: 'Gloock', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.jupage-cookie_hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.jupage-cookie_hero i {
    font-size: 5rem;
    color: #FFA500;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

.jupage-cookie_terms {
    padding: 80px 5%;
    background: #FFF8F0;
}

.jupage-cookie_termbox {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    border-left: 5px solid #8B4513;
}

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

.jupage-cookie_termbox i {
    font-size: 3rem;
    color: #A0522D;
    margin-bottom: 25px;
    display: block;
}

.jupage-cookie_termbox h2 {
    font-family: 'Gloock', serif;
    color: #5A3921;
    margin-bottom: 20px;
    font-size: 2rem;
}

.jupage-cookie_termbox p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
}

@keyframes cookieFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@media (max-width: 1280px) {
    .jupage-cookie_hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 1024px) {
    .jupage-cookie_hero {
        min-height: 60vh;
    }
    
    .jupage-cookie_termbox {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .jupage-cookie_hero h1 {
        font-size: 2.7rem;
    }
    
    .jupage-cookie_hero p {
        font-size: 1.1rem;
    }
    
    .jupage-cookie_hero i {
        font-size: 4rem;
    }
    
    .jupage-cookie_termbox {
        padding: 30px;
    }
    
    .jupage-cookie_termbox h2 {
        font-size: 1.7rem;
    }
    
    .jupage-cookie_termbox p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .jupage-cookie_hero {
        min-height: 50vh;
        padding: 80px 5%;
    }
    
    .jupage-cookie_hero h1 {
        font-size: 2.3rem;
    }
    
    .jupage-cookie_hero i {
        font-size: 3.5rem;
    }
    
    .jupage-cookie_terms {
        padding: 60px 5%;
    }
    
    .jupage-cookie_termbox {
        padding: 25px;
    }
}

@media (max-width: 320px) {
    .jupage-cookie_hero h1 {
        font-size: 2rem;
    }
    
    .jupage-cookie_termbox i {
        font-size: 2.5rem;
    }
    
    .jupage-cookie_termbox h2 {
        font-size: 1.5rem;
    }
}