* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Cambay', sans-serif;
    color: #2a2a2a;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yhn_header-wrapper {
    background: linear-gradient(135deg, #ff9a00 0%, #ff5e00 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.yhn_header-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yhn_header-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.yhn_header-logo img:hover {
    transform: rotate(10deg);
}

.yhn_header-title {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.yhn_header-nav {
    display: flex;
    align-items: center;
}

.yhn_header-links {
    display: flex;
    gap: 25px;
}

.yhn_header-links a {
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.yhn_header-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.yhn_header-links a:hover::after {
    width: 100%;
}

.yhn_header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.yhn_header-burger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.yhn_premium-section {
    min-height: 90vh;
    position: relative;
    background: url('../yhn-img/yhn-prem-image.jpg') center/cover no-repeat;
}

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

.yhn_premium-content {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background: rgba(245, 244, 244, 0.25);
}

.yhn_premium-title {
    color: #2ecc71;
    font-family: 'Teko', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1.2s ease;
}

.yhn_premium-title i {
    margin-right: 20px;
    color: #cc5200;
    font-size: 5rem;
    vertical-align: middle;    
}

.yhn_premium-text {
    color: #fff;
    font-size: 1.3rem;
    max-width: 800px;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
    min-height: 100px;
    margin-bottom: 15px;
}

.yhn_welcome-section {
    min-height: 90vh;
    position: relative;
    background: url('../yhn-img/yhn-background-image-1.jpg') center/cover no-repeat;
}

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

.yhn_welcome-content {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.yhn_welcome-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.yhn_welcome-text {
    font-size: 1.2rem;
    color: #fff;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.yhn_about-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #f9f9f9 0%, #fff 100%);
}

.yhn_about-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.yhn_about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.yhn_about-image:hover {
    transform: scale(1.02);
}

.yhn_about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.yhn_about-content {
    flex: 1;
}

.yhn_about-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ff5e00;
}

.yhn_about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.yhn_features-section {
    padding: 80px 20px;
    background: linear-gradient(45deg, #fff8f0 0%, #ffe8d6 100%);
}

.yhn_features-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #e65100;
}

.yhn_features-grid {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.yhn_features-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1 1 340px;
    max-width: 350px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.yhn_features-card i {
    font-size: 3rem;
    color: #ff5e00;
    margin-bottom: 20px;
}

.yhn_features-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.yhn_features-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.yhn_features-wide {
    flex: 1 1 630px;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.yhn_features-wide i {
    margin-bottom: 0;
}

.yhn_reviews-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);
}

.yhn_reviews-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #e65100;
}

.yhn_reviews-container {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.yhn_reviews-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #ff5e00;
}

.yhn_reviews-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.yhn_reviews-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.yhn_reviews-card i {
    color: #ff5e00;
    font-size: 1.5rem;
}

.yhn_faq-section {
    min-height: 80vh;
    position: relative;
    background: url('../yhn-img/yhn-background-image-2.jpg') center/cover no-repeat;
}

.yhn_faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 94, 0, 0.8);
}

.yhn_faq-content {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yhn_faq-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #fff;
}

.yhn_faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.yhn_faq-item {
    margin-bottom: 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.yhn_faq-question {
    padding: 20px;
    font-size: 1.2rem;
    color: #e65100;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}

.yhn_faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.yhn_faq-item.active .yhn_faq-question::after {
    transform: rotate(45deg);
}

.yhn_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
    color: #555;
    line-height: 1.6;
}

.yhn_faq-item.active .yhn_faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.yhn_contact-section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yhn_contact-container {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease;
}

.yhn_contact-title {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #e65c00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yhn_contact-title i {
    margin-right: 15px;
    font-size: 3.5rem;
    vertical-align: middle;
}

.yhn_contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.yhn_form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yhn_form-group label {
    font-size: 1.1rem;
    color: #555;
}

.yhn_form-group input,
.yhn_form-group textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.yhn_form-group input:focus,
.yhn_form-group textarea:focus {
    border-color: #e65c00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230,92,0,0.2);
}

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

.yhn_error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    min-height: 20px;
}

.yhn_input-error {
    border-color: #e74c3c !important;
}

.yhn_submit-btn {
    background: linear-gradient(135deg, #e65c00 0%, #cc5200 100%);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
    font-size: 1.3rem;
}

.yhn_submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230,92,0,0.3);
}

.yhn_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;
}

.yhn_modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: modalFadeIn 0.5s ease;
}

.yhn_modal-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.yhn_modal-content h3 {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    color: #e65c00;
    margin-bottom: 15px;
}

.yhn_modal-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.yhn_modal-close {
    background: #e65c00;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yhn_modal-close:hover {
    background: #cc5200;
    transform: translateY(-2px);
}

.yhn_footer-wrapper {
    background: linear-gradient(135deg, #333 0%, #111 100%);
    padding: 40px 20px;
    color: #fff;
}

.yhn_footer-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yhn_footer-copyright {
    font-size: 1rem;
}

.yhn_footer-links {
    display: flex;
    gap: 20px;
}

.yhn_footer-links a {
    color: #fff;
    transition: color 0.3s ease;
}

.yhn_footer-links a:hover {
    color: #ff5e00;
}

.yhn_cookies-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 15px 0;
    display: none;
    z-index: 1000;
}

.yhn_cookies-content {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.yhn_cookies-content p {
    flex: 1;
    min-width: 300px;
    line-height: 1.6;
}

.yhn_cookies-content a {
    color: #ff5e00;
    text-decoration: underline;
}

.yhn_cookies-accept {
    background: #ff5e00;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yhn_cookies-accept:hover {
    background: #e65100;
    transform: translateY(-2px);
}

.yhnpages_header-section {
    background: linear-gradient(135deg, #ff7b00 0%, #ff5500 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.yhnpages_header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../yhn-img/yhn-background-image-1.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.yhnpages_main-heading {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
}

.yhnpages_main-heading i {
    margin-right: 15px;
    font-size: 4rem;
    vertical-align: middle;
}

.yhnpages_terms-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 60px 20px;
}

.yhnpages_terms-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.yhnpages_terms-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

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

.yhnpages_terms-item i {
    color: #ff5500;
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.yhnpages_terms-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    min-height: 60px;
}

.yhnpages_heading-section {
    background: linear-gradient(135deg, #e65c00 0%, #cc5200 100%);
    padding: 90px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.yhnpages_heading-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent 0%, #ff9933 50%, transparent 100%);
}

.yhnpages_primary-title {
    font-size: 3.8rem;
    position: relative;
    z-index: 1;
    animation: pulseGlow 2s infinite alternate;
}

.yhnpages_primary-title i {
    margin-right: 20px;
    font-size: 4.2rem;
    vertical-align: middle;
}

.yhnpages_policy-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 70px 20px;
}

.yhnpages_heading-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../yhn-img/yhn-background-image-2.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.yhnpages_policy-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.yhnpages_policy-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
}

.yhnpages_policy-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.yhnpages_policy-item i {
    color: #e65c00;
    font-size: 2.2rem;
    flex-shrink: 0;
}

.yhnpages_policy-item p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    min-height: 80px;
    display: flex;
    align-items: center;
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255,255,255,0.7);
    }
}

@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 fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1280px) {
    .yhn_header-title {
        font-size: 2.2rem;
    }

    .yhn_premium-title {
        font-size: 4rem;
    }
    
    .yhn_welcome-title {
        font-size: 3.5rem;
    }
    
    .yhn_about-title {
        font-size: 2.5rem;
    }
    
    .yhn_features-title, .yhn_reviews-title, .yhn_faq-title {
        font-size: 2.8rem;
    }

    .yhnpages_main-heading {
        font-size: 3rem;
    }

    .yhnpages_primary-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .yhn_header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .yhn_header-title {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .yhn_premium-title {
        font-size: 3.5rem;
    }
    .yhn_premium-text {
        font-size: 1.2rem;
    }
    
    .yhn_about-container {
        flex-direction: column;
    }
    
    .yhn_about-image, .yhn_about-content {
        flex: none;
        width: 100%;
    }
    
    .yhn_features-wide {
        flex: 1 1 300px;
        flex-direction: column;
        text-align: center;
    }

    .yhnpages_main-heading {
        font-size: 2.8rem;
    }
    
    .yhnpages_terms-item {
        padding: 20px;
    }

    .yhnpages_primary-title {
        font-size: 3.2rem;
    }
    
    .yhnpages_policy-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .yhn_header-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ff9a00 0%, #ff5e00 100%);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        clip-path: circle(0px at 90% -10%);
        transition: clip-path 0.5s ease;
    }
    
    .yhn_header-links.active {
        clip-path: circle(1500px at 90% -10%);
    }
    
    .yhn_header-burger {
        display: flex;
    }
    
    .yhn_header-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .yhn_header-burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .yhn_header-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .yhn_premium-title {
        font-size: 3rem;
    }

    .yhn_premium-title i {
        font-size: 4rem;
    }
    
    .yhn_welcome-title {
        font-size: 3rem;
    }
    
    .yhn_about-title {
        font-size: 2.2rem;
    }
    
    .yhn_features-title, .yhn_reviews-title, .yhn_faq-title {
        font-size: 2.5rem;
    }

    .yhn_reviews-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .yhn_contact-container {
        padding: 30px;
    }
    
    .yhn_contact-title {
        font-size: 2.5rem;
    }
    
    .yhn_contact-title i {
        font-size: 3rem;
    }

    .yhnpages_main-heading {
        font-size: 2.5rem;
    }
    
    .yhnpages_main-heading i {
        font-size: 3rem;
    }
    
    .yhnpages_terms-item {
        flex-direction: column;
        gap: 15px;
    }

    .yhnpages_primary-title {
        font-size: 2.8rem;
    }
    
    .yhnpages_primary-title i {
        font-size: 3.5rem;
    }
    
    .yhnpages_policy-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .yhnpages_policy-item p {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .yhn_header-title {
        font-size: 1.8rem;
    }

    .yhn_premium-title {
        font-size: 2.5rem;
    }
    .yhn_premium-text {
        font-size: 1.1rem;
    }
    
    .yhn_welcome-title {
        font-size: 2.5rem;
    }
    
    .yhn_welcome-text {
        font-size: 1rem;
    }
    
    .yhn_about-title {
        font-size: 2rem;
    }
    
    .yhn_about-text {
        font-size: 1rem;
    }
    
    .yhn_features-title, .yhn_reviews-title, .yhn_faq-title {
        font-size: 2rem;
    }
    
    .yhn_faq-question {
        font-size: 1.1rem;
        padding: 15px;
    }

    .yhn_contact-container {
        padding: 25px;
    }
    
    .yhn_contact-title {
        font-size: 2.2rem;
    }
    
    .yhn_form-group input,
    .yhn_form-group textarea {
        padding: 12px;
    }
    
    .yhn_footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .yhnpages_main-heading {
        font-size: 2.2rem;
    }
    
    .yhnpages_terms-item p {
        font-size: 1rem;
    }

    .yhnpages_primary-title {
        font-size: 2.3rem;
    }
    
    .yhnpages_policy-item p {
        font-size: 1.05rem;
    }
}

@media (max-width: 320px) {
    .yhn_header-title {
        font-size: 1.5rem;
    }
    
    .yhn_premium-title {
        font-size: 2.2rem;
    }

    .yhn_welcome-title {
        font-size: 2rem;
    }
    
    .yhn_features-card, .yhn_reviews-card {
        padding: 20px;
    }
    
    .yhn_contact-container {
        padding: 20px;
    }
    
    .yhn_contact-title {
        font-size: 2rem;
    }

    .yhn_cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .yhn_cookies-content p {
        min-width: auto;
    }

    .yhnpages_main-heading {
        font-size: 1.8rem;
    }
    
    .yhnpages_terms-section {
        padding: 40px 15px;
    }

    .yhnpages_primary-title {
        font-size: 2rem;
    }
    
    .yhnpages_policy-section {
        padding: 50px 15px;
    }
}