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

body {
    font-family: 'Lohit Devanagari', sans-serif;
    margin: 0;
    padding: 0;
    color: #3a2c0a;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Charm', cursive;
    color: #4a3310;
}

.jn_navbar-container {
    background: linear-gradient(135deg, #8B5A2B, #A67C52, #D2B48C, #F5DEB3);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.jn_navbar-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.jn_logo-holder img {
    height: 60px;
    width: auto;
}

.jn_main-heading {
    margin: 0;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.jn_navigation-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jn_menu-item {
    margin-left: 1.5rem;
}

.jn_menu-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.jn_menu-link:hover {
    color: #FFD700;
}

.jn_contact-button {
    background-color: #5C3A21;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
}

.jn_contact-button:hover {
    background-color: #8B5A2B;
}

.jn_hero-section {
    height: 100vh;
    background-image: url('../jn-image/jn-bg-img-1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.jn_hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.jn_hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.jn_hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.jn_hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.jn_hero-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.jn_hero-icons .material-icons {
    font-size: 2.5rem;
    color: #FFD700;
}

.jn_about-section {
    padding: 5rem 2rem;
    background-color: #FFF8E1;
}

.jn_about-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.jn_about-imageholder img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.jn_about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #5C3A21;
}

.jn_about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.jn_about-features {
    display: flex;
    gap: 2rem;
}

.jn_about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #5C3A21;
}

.jn_about-feature .material-icons {
    color: #8B5A2B;
}

.jn_coffee-section {
    position: relative;
    padding: 5rem 2rem;
    color: white;
}

.jn_coffee-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../jn-image/jn-bg-img-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.jn_coffee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.9), rgba(92, 58, 33, 0.9));
    z-index: -1;
}

.jn_coffee-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jn_coffee-mainheading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFD700;
}

.jn_coffee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.jn_coffee-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jn_coffee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.jn_coffee-highlight {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
}

.jn_coffee-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.jn_coffee-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.jn_coffee-description {
    margin-bottom: 1.5rem;
}

.jn_coffee-icons {
    color: #FFD700;
}

.jn_reviews-section {
    padding: 5rem 2rem;
    background-color: #F5F5F5;
}

.jn_reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jn_reviews-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #5C3A21;
}

.jn_reviews-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.jn_reviews-testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.jn_reviews-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #8B5A2B;
}

.jn_reviews-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #5C3A21;
}

.jn_reviews-comment {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.jn_reviews-rating {
    color: #FFD700;
}

.jn_game-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #D2B48C, #A67C52);
}

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

.jn_game-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: white;
}

.jn_game-content {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.jn_game-question h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #5C3A21;
}

.jn_game-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.jn_game-option {
    background-color: #8B5A2B;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jn_game-option:hover {
    background-color: #5C3A21;
}

.jn_game-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #FFF8E1;
}

.jn_game-icon {
    font-size: 3rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.jn_game-message {
    font-size: 1.2rem;
    color: #5C3A21;
}

.jn_game-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.jn_game-icons .material-icons {
    font-size: 2.5rem;
    color: white;
}

.jn_faq-section {
    position: relative;
    padding: 5rem 2rem;
    background-image: url('../jn-image/jn-bg-img-3.jpg');
    background-size: cover;
    background-position: center;
}

.jn_faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(92, 58, 33, 0.9);
    z-index: 0;
}

.jn_faq-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.jn_faq-mainheading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFD700;
}

.jn_faq-accordion {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
}

.jn_faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.jn_faq-item:last-child {
    border-bottom: none;
}

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

.jn_faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.jn_faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.jn_faq-arrow {
    color: #FFD700;
    transition: transform 0.3s ease;
}

.jn_faq-item.active .jn_faq-arrow {
    transform: rotate(180deg);
}

.jn_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    background-color: rgba(0, 0, 0, 0.1);
}

.jn_faq-item.active .jn_faq-answer {
    max-height: 300px;
    padding: 1.5rem;
}

.jn_faq-answer p {
    margin: 0;
    color: #F5DEB3;
}

.jn_contact-section {
    position: relative;
    padding: 5rem 2rem;
}

.jn_contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../jn-image/jn-bg-img-4.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.jn_contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.8), rgba(92, 58, 33, 0.9));
    z-index: -1;
}

.jn_contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.jn_contact-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #5C3A21;
}

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

.jn_form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.jn_form-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #5C3A21;
    font-weight: bold;
}

.jn_form-input, .jn_form-textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #D2B48C;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Lohit Devanagari', sans-serif;
    transition: all 0.3s ease;
}

.jn_form-input:focus, .jn_form-textarea:focus {
    outline: none;
    border-color: #8B5A2B;
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

.jn_form-textarea {
    min-height: 150px;
    resize: vertical;
}

.jn_form-error {
    color: #D32F2F;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    height: 1.2rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.jn_form-group.invalid .jn_form-error {
    opacity: 1;
    transform: translateY(0);
}

.jn_form-group.invalid .jn_form-input,
.jn_form-group.invalid .jn_form-textarea {
    border-color: #D32F2F;
}

.jn_checkbox-group {
    margin: 1rem 0;
}

.jn_form-checkbox {
    position: absolute;
    opacity: 0;
}

.jn_checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #5C3A21;
    user-select: none;
}

.jn_checkbox-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #8B5A2B;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s ease;
    background-color: white;
}

.jn_checkbox-custom .material-icons {
    font-size: 16px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jn_form-checkbox:checked + .jn_checkbox-label .jn_checkbox-custom {
    background-color: #8B5A2B;
}

.jn_form-checkbox:checked + .jn_checkbox-label .jn_checkbox-custom .material-icons {
    opacity: 1;
}

.jn_form-checkbox:focus + .jn_checkbox-label .jn_checkbox-custom {
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.3);
}

.jn_form-submit {
    background-color: #8B5A2B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    opacity: 0.7;
}

.jn_form-submit:not(:disabled) {
    opacity: 1;
    background-color: #8B5A2B;
}

.jn_form-submit:not(:disabled):hover {
    background-color: #5C3A21;
}

.jn_contact-success {
    text-align: center;
    padding: 2rem;
    display: none;
}

.jn_contact-success .material-icons {
    font-size: 3rem;
    color: #388E3C;
    margin-bottom: 1rem;
}

.jn_contact-success p {
    font-size: 1.2rem;
    color: #5C3A21;
}

.jn_footer-container {
    background: linear-gradient(135deg, #5C3A21, #8B5A2B);
    padding: 2rem;
    color: white;
}

.jn_footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.jn_footer-copyright {
    margin-bottom: 1rem;
}

.jn_footer-links {
    display: flex;
    gap: 1.5rem;
}

.jn_footer-link {
    color: #F5DEB3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jn_footer-link:hover {
    color: #FFD700;
}

.jn_contact-link {
    font-weight: bold;
}

.jn_cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #5C3A21;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.jn_cookies-banner.show {
    transform: translateY(0);
}

.jn_cookies-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 80%;
}

.jn_cookies-policy {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.jn_cookies-accept {
    background-color: #FFD700;
    color: #5C3A21;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.jn_cookies-accept:hover {
    background-color: #F5DEB3;
}

.jn_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.jn_modal-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.jn_modal-overlay.show .jn_modal-container {
    transform: translateY(0);
}

.jn_modal-title {
    font-size: 1.8rem;
    color: #5C3A21;
    margin-bottom: 1rem;
    text-align: center;
}

.jn_modal-text {
    color: #5C3A21;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
}

.jn_modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.jn_modal-form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.jn_modal-input {
    padding: 0.9rem 1.2rem;
    border: 2px solid #D2B48C;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lohit Devanagari', sans-serif;
    transition: all 0.3s ease;
}

.jn_modal-input:focus {
    outline: none;
    border-color: #8B5A2B;
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.2);
}

.jn_modal-error {
    color: #D32F2F;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    height: 1rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.jn_modal-form-group.invalid .jn_modal-error {
    opacity: 1;
    transform: translateY(0);
}

.jn_modal-form-group.invalid .jn_modal-input {
    border-color: #D32F2F;
}

.jn_modal-checkbox-group {
    margin: 0.5rem 0;
}

.jn_modal-checkbox {
    position: absolute;
    opacity: 0;
}

.jn_modal-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #5C3A21;
    user-select: none;
    line-height: 1.4;
}

.jn_modal-checkbox-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #8B5A2B;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s ease;
    background-color: white;
    flex-shrink: 0;
}

.jn_modal-checkbox-custom .material-icons {
    font-size: 16px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jn_modal-checkbox:checked + .jn_modal-checkbox-label .jn_modal-checkbox-custom {
    background-color: #8B5A2B;
}

.jn_modal-checkbox:checked + .jn_modal-checkbox-label .jn_modal-checkbox-custom .material-icons {
    opacity: 1;
}

.jn_modal-checkbox:focus + .jn_modal-checkbox-label .jn_modal-checkbox-custom {
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.3);
}

.jn_modal-button {
    background-color: #8B5A2B;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.jn_modal-button:not(:disabled) {
    opacity: 1;
    background-color: #8B5A2B;
}

.jn_modal-button:not(:disabled):hover {
    background-color: #5C3A21;
}

.jn_modal-success {
    text-align: center;
    padding: 1.5rem;
    display: none;
}

.jn_modal-success .material-icons {
    font-size: 3rem;
    color: #388E3C;
    margin-bottom: 1rem;
}

.jn_modal-success p {
    font-size: 1.1rem;
    color: #5C3A21;
    line-height: 1.5;
}

.jn_modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #5C3A21;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.jn_modal-close:hover {
    background-color: rgba(92, 58, 33, 0.1);
}


.jn_modal-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.jn_modal-title {
    font-size: 1.8rem;
    color: #5C3A21;
    margin-bottom: 1rem;
}

.jn_modal-text {
    margin-bottom: 1.5rem;
    color: #5C3A21;
}

.jn_modal-form {
    display: flex;
    gap: 1rem;
}

.jn_modal-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #D2B48C;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Lohit Devanagari', sans-serif;
}

@media (max-width: 1024px) {
    .jn_coffee-card {
        width: calc(50% - 2rem);
    }
    
    .jn_reviews-testimonial {
        width: calc(50% - 2rem);
    }
    
    .jn_about-container {
        flex-direction: column;
    }
    
    .jn_about-imageholder img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .jn_navbar-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jn_navigation-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .jn_menu-item {
        margin: 0.5rem;
    }
    
    .jn_hero-title {
        font-size: 2.5rem;
    }
    
    .jn_hero-text {
        font-size: 1.1rem;
    }

    .jn_contact-container {
        padding: 2rem;
    }
    
    .jn_about-title, .jn_coffee-mainheading, .jn_reviews-title, .jn_game-title, .jn_faq-mainheading, .jn_contact-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .jn_coffee-card, .jn_reviews-testimonial {
        width: 100%;
    }
    
    .jn_hero-title {
        font-size: 2rem;
    }
    
    .jn_menu-item {
        margin: 0.3rem;
    }
    
    .jn_menu-link {
        font-size: 1rem;
    }

    .jn_cookies-banner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jn_cookies-message {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .jn_modal-container {
        padding: 1.8rem;
    }
    
    .jn_modal-title {
        font-size: 1.5rem;
    }
    
    .jn_modal-text {
        font-size: 0.95rem;
    }

    .jn_contact-section {
        padding: 3rem 1rem;
    }
    
    .jn_contact-container {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .jn_navbar-wrapper {
        padding: 1rem;
    }
    
    .jn_main-heading {
        font-size: 1.5rem;
    }
    
    .jn_hero-title {
        font-size: 1.8rem;
    }
    
    .jn_about-title, .jn_coffee-mainheading, .jn_reviews-title, .jn_game-title, .jn_faq-mainheading, .jn_contact-title {
        font-size: 1.8rem;
    }
    
    .jn_footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.jnpage_cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Lohit Devanagari', sans-serif;
}

.jnpage_cookie-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jnpage_cookie-title {
    font-family: 'Charm', cursive;
    font-size: 2.5rem;
    color: #5C3A21;
    margin-bottom: 1rem;
}

.jnpage_cookie-header .material-icons {
    font-size: 3rem;
    color: #8B5A2B;
}

.jnpage_cookie-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.jnpage_cookie-item {
    background-color: #FFF8E1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #8B5A2B;
}

.jnpage_cookie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.jnpage_cookie-item .material-icons {
    font-size: 2rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.jnpage_cookie-item h3 {
    font-family: 'Charm', cursive;
    color: #5C3A21;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.jnpage_cookie-item p {
    color: #5C3A21;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .jnpage_cookie-container {
        padding: 1.5rem;
    }
    
    .jnpage_cookie-title {
        font-size: 2rem;
    }
    
    .jnpage_cookie-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .jnpage_cookie-container {
        padding: 1rem;
    }
    
    .jnpage_cookie-title {
        font-size: 1.8rem;
    }
    
    .jnpage_cookie-item {
        padding: 1.2rem;
    }
}

.jnpage_privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Lohit Devanagari', sans-serif;
}

.jnpage_privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jnpage_privacy-title {
    font-family: 'Charm', cursive;
    font-size: 2.5rem;
    color: #5C3A21;
    margin-bottom: 1rem;
}

.jnpage_privacy-header .material-icons {
    font-size: 3rem;
    color: #8B5A2B;
}

.jnpage_privacy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.jnpage_privacy-item {
    background-color: #FFF8E1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.jnpage_privacy-item:hover {
    transform: translateY(-5px);
}

.jnpage_privacy-item .material-icons {
    font-size: 2rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.jnpage_privacy-item h3 {
    font-family: 'Charm', cursive;
    color: #5C3A21;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.jnpage_privacy-item p {
    color: #5C3A21;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .jnpage_privacy-container {
        padding: 1.5rem;
    }
    
    .jnpage_privacy-title {
        font-size: 2rem;
    }
    
    .jnpage_privacy-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .jnpage_privacy-container {
        padding: 1rem;
    }
    
    .jnpage_privacy-title {
        font-size: 1.8rem;
    }
    
    .jnpage_privacy-item {
        padding: 1.2rem;
    }
}