body.no-scroll {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

.popup-open {
    overflow: hidden;
    height: 100vh;
}

.mini-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.popup-content {
    display: flex;
    background-color: white;
    border-radius: 25px;
    width: 90%;
    max-width: 850px;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    will-change: transform;
}

.content {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.left-section {
    width: 50%;
    padding: 30px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.right-section {
    width: 50%;
    padding: 30px;
    background: url('../img/banner_1x.png') no-repeat center;
    background-size: cover;
    background-color: #333;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    color: #fff;
}

.right-section h2 {
    color: #fff;
}

.close-btn,
.close-detail-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 32px;
    cursor: pointer;
    color: #FFF;
    z-index: 10000;
    transition: color 0.3s;
    will-change: color;
}

.close-btn:hover,
.close-detail-btn:hover {
    color: #ccc;
}

form {
    background-color: #fff;
    padding: 0;
    flex-direction: column;
    gap: 0px;
}

form label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0px;
    line-height: 2.0;
    display: contents;
}

form input:not([type="checkbox"]),
form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
    cursor: pointer;
}

form input:not([type="checkbox"]):focus,
form select:focus {
    outline: none;
    border-color: #1DA1F2;
    box-shadow: 0 0 5px rgba(29, 161, 242, 0.5);
}

form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

form input[type="checkbox"]:checked {
    background-color: #1DA1F2;
    border-color: #1DA1F2;
}

form input[type="checkbox"]:checked::after {
    content: '✓';
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

form input[type="checkbox"]:focus {
    outline: 2px solid #1DA1F2;
    outline-offset: 2px;
}

form select:focus {
    outline: none;
    border-color: #1DA1F2;
    box-shadow: 0 0 5px rgba(29, 161, 242, 0.5);
}

.agree-section {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0px;
    justify-content: space-between;
}

.divider {
    border: 0;
    border-top: 1px solid #CCCCCC;
    width: 100%;
    margin: 5px 0px;
    display: block;
}

.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 10px;
    margin-left: 30px;
    color: #000;
}

.checkbox-options.hidden {
    display: none;
}

.checkbox-options label {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 5px;
    color: #000;
}

.checkbox-options .divider {
    border: 0;
    border-top: 1px solid #000;
    width: calc(100% + 15px);
    margin: 5px 0 5px -15px;
}

.collapse-btn {
    background-color: transparent;
    border: none;
    font-size: 13px;
    cursor: pointer;
    color: #1DA1F2;
    margin-left: auto;
    padding: 0 5px;
}

.view-btn {
    background-color: transparent;
    border: none;
    font-size: 15px;
    cursor: pointer;
    color: #1DA1F2;
    margin-left: auto;
    padding: 0 0px;
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    transition: transform 0.3s ease;
}

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

.submit-btn {
    padding: 15px;
    background-color: #0033FF;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-top: 25px;
}

.left-section p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.info-section {
    margin-top: 10px;
}

.info-section p {
    font-size: 14px;
    color: #666;
}

.coupon-section h4 {
    display: none;
}

.coupon-options {
    margin-top: 0;
    display: flex;
    gap: 10px;
}

.coupon-btn {
    background-color: #fff;
    color: #000;
    border: 1px dashed #ccc;
    border-radius: 15px;
    padding: 5px 10px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

#detail-popup-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

#detail-popup-content .popup-left {
    width: 100%;
    padding: 0px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.close-detail-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #808080;
    z-index: 10001;
    transition: color 0.3s;
}

#detail-popup-content hr {
    border: 0;
    border-top: 1px solid #CCCCCC;
    width: 100%;
    margin: 10px 0;
}

#detail-popup-content .detail-text {
    font-size: 15px;
    font-weight: 300;
    margin-top: 0;
    padding: 0;
    white-space: pre-line;
    overflow-wrap: break-word;
    overflow-y: auto;
    max-height: 400px;
    margin-left: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
}

#detail-popup-content .detail-text br {
    content: "";
    display: block;
    margin-top: 2px;
}



.hidden {
    display: none;
}

h1 {
    font-size: 27px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    #detail-popup-content .detail-text {
        font-size: 12px;
        line-height: 1.2;
    }

    h1 {
        font-size: 20px;
    }
}

.left-section h2 {
    font-size: 27px;
    margin: 0;
}

.left-section .submit-btn {
    margin-top: auto;
}

@media (max-width: 480px) {
    .left-section h2 {
        font-size: 18px;
    }
}


.right-section h3 {
    font-size: 20px;
}

@media (max-width: 1024px) {
    #detail-popup-content .detail-text {
        font-size: 12px;
        line-height: 1.2;
    }

    .popup-content {
        width: 95%;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    #detail-popup-content .detail-text {
        font-size: 12px;
        line-height: 1.2;
    }

    .popup-content {
        flex-direction: column;
        width: 90%;
        min-height: auto;
    }

    .content {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 100%;
        padding: 20px;
        min-height: 150px;
    }

    .submit-btn {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        margin: 5px;
        border-radius: 10px;
    }

    .left-section,
    .right-section {
        padding: 15px;
    }

    form label {
        font-size: 13px;
    }

    form input:not([type="checkbox"]),
    form select {
        padding: 8px;
        font-size: 13px;
        border-radius: 6px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
        margin-top: 20px
    }

    .right-section h3 {
        font-size: 16px;
    }
}

.na-sec-1 {
    height: auto;
    position: relative;
    align-items: flex-start;
    margin: 0 auto;
    max-width: var(--page-container);
    padding: 0 40px;

}

.na-container {
    position: sticky;
    top: 0px;
    left: 0;
    max-width: var(--page-container);
    margin-top: 167px;
    margin-bottom: 260px;
}

.na-header {
    background: #FFFDFD99;
    padding: 0;
    height: 86px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.na-nav-container {
    /* max-width: var(--page-container); */
    margin: 0 55px 0 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
}

.na-logo {
    font-size: 28px;
    font-weight: bold;
    color: #4285f4;
    font-style: italic;
}

.na-nav-menu {
    display: flex;
    list-style: none;
    gap: 83px;
}

.nl-left-menu {
    display: none;
}

.na-nav-item {
    position: relative;
}

.na-nav-link {
    text-decoration: none;
    color: #333;
    font-size: 22px;
    font-weight: 500;
    padding: 10px 16px 10px 0;
    position: relative;
    display: block;
}

.na-nav-link::after {
    content: "";
    position: absolute;
    right: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg) translateY(-50%);
    top: calc(50% - 0.25rem);
    pointer-events: none;
    transition: transform 0.3s;
}

.na-nav-link:hover {
    color: #4285f4;
}

.na-nav-link:hover::after {
    border-right: 1px solid #4285f4;
    border-bottom: 1px solid #4285f4;
}

.na-nav-left {
    display: flex;
    align-items: center;
    gap: 90px;
}

.na-language-selector {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding-right: 20px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.na-language-selector::after {
    content: "";
    position: absolute;
    right: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg) translateY(-50%);
    top: calc(50% - 0.25rem);
    pointer-events: none;
    transition: border-color 0.3s;
}

.na-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1000;
}

.na-nav-item:hover .na-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.na-dropdown-item {
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #f1f3f4;
}

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

.na-dropdown-item:hover {
    background: #f8f9fa;
    color: #4285f4;
}

.na-nav-right {
    display: flex;
    align-items: center;
    gap: 27px;
}

.na-login-btn {
    background: #3F64ED;
    color: white;
    width: 124px;
    height: 46px;
    padding: 8px 40px;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.na-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    min-width: 40px;
    z-index: 1000;
    padding: 4px 0;
}

.na-language-selector:hover .na-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.na-lang-item {
    padding: 6px 12px;
    color: #444;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 8px;
}

.na-lang-item img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.na-lang-item:hover {
    background: #f8f9fa;
    color: #4285f4;
}

.na-submenu {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    z-index: 999;
}

.na-header.submenu-active .na-submenu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
}

.na-submenu-container {
    max-width: var(--page-container);
    margin: 0 55px 0 230px;
    padding: 35px 45px;
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 40px;
    align-items: start;
}

.na-submenu-title h3 {
    color: #000000;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}

.na-submenu-title p {
    color: #828282;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
}

.na-submenu-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.na-submenu-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.na-submenu-img img {
    width: 100%;
    height: 100%;
    max-height: 130px;
    object-fit: contain;
}

.na-submenu-item span {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.na-submenu-column {
    flex: 1;
    min-width: 0;
}

.na-submenu-item {
    list-style: none;
    text-align: center;
    width: 100%;
}

.na-submenu-link {
    display: block;
    color: #505050;
    padding: 0;
    text-decoration: none;
    font-size: var(--fs-h9);
    font-weight: 400;
    position: relative;
    text-align: center;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease;
}

.na-submenu-link:hover {
    color: #000;
}

.na-nl-menu-item-wrapper {
    display: flex;
    align-items: center;
}

.na-na-menu-item {
    position: relative;
    margin: 0 25px;
    cursor: pointer;
}

.na-submenu-img {
    overflow: hidden;
    width: 100%;
    max-width: 190px;
    max-height: 136px;
    background: #F8F8F8;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.na-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 47px;
}

.na-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #bcbcbc;
}

.na-card-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.na-card-content {
    padding: 28px 19px;
}

.na-card-title {
    font-size: var(--fs-h5-2);
    font-weight: 500;
    margin-bottom: 18px;
    color: #333;
    line-height: 1.4;
}

.na-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.na-card-date {
    font-weight: 400;
    font-size: var(--fs-h5);
    color: #BDBDBD;
}

.na-card-icons {
    display: flex;
    gap: 5px;
    height: 30px;
}

.na-title {
    text-align: left;
    margin-left: 0px;
    font-weight: 700 !important;
    font-size: 35px !important;
    line-height: 40px;
    margin-bottom: 10px;
}

.na-sub-title {
    font-size: 24px;
    color: #828282;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
}

.na-navigation {
    text-align: center;
    margin: 105px 0;
}

.na-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 40px;
}

.na-navigation li {
    display: inline-block;
}

.na-navigation .link {
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    color: #B8B8B8;
    position: relative;
    padding-bottom: 5px;
}

.na-navigation .link.active {
    color: #000;
    font-weight: 500;
}

.na-navigation .link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.na-card-image img {
    width: 100%;
    display: block;
}

.na-card-tags {
    position: absolute;
    top: 24px;
    right: 21px;
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.na-card-tags .tag {
    font-size: 18px;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons .icon img {
    width: 20px;
    height: 20px;
}

.nl-footer .na-logo-footer {
  margin-bottom: 1.2rem;
  height: 3rem;
  width: auto;
  margin-right: auto;
}
