/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Header Utility Bar */
.header-utility-bar {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.utility-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.utility-links li a {
    font-size: 12px;
    color: #666;
    transition: color 0.3s;
}

.utility-links li a:hover {
    color: #5AABA5;
    text-decoration: underline;
}

/* Language Selector Styles */
.language-selector .lang-selector {
    font-size: 12px;
    color: #666;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.language-selector .lang-selector:hover {
    border-color: #5AABA5;
    color: #5AABA5;
}

.language-selector .lang-selector:focus {
    border-color: #5AABA5;
    box-shadow: 0 0 0 2px rgba(90, 171, 165, 0.2);
}

.language-selector .lang-selector option {
    background-color: #fff;
    color: #333;
    padding: 8px;
}

/* Mobile Language Selector in Menu (햄버거 메뉴 안) */
.language-selector-mobile {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.language-selector-mobile .lang-selector {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Mobile Language Selector in Header (헤더 가운데) - 데스크톱에서는 숨김 */
.mobile-lang-selector {
    display: none;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-utils {
    flex-shrink: 0;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 20px 0;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.main-nav > ul > li > a:hover {
    color: #5AABA5;
}

/* Sub Menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f4e8;
    min-width: 200px;
    max-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 2px solid #d4a574;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    padding: 8px 12px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.main-nav > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu li {
    margin: 0;
    border-bottom: 1px solid #e0d5b7;
    width: 100%;
    display: block;
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu li a {
    display: block;
    width: 100%;
    padding: 2px 8px;
    color: #333;
    font-size: 13px;
    font-weight: normal;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

.sub-menu li a:hover {
    background: transparent;
    color: #5AABA5;
    font-weight: 600;
    border: none;
    padding-left: 12px;
    transform: none;
}

/* Language Selector & Search */
.header-utils {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Only Elements */
.desktop-only {
    display: flex;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f9fa;
}

.mobile-menu-header .logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile Utility Links */
.mobile-utility-links {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-utility-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-utility-links li {
    flex: 1 1 calc(50% - 5px);
    min-width: 100px;
}

.mobile-utility-links a {
    display: block;
    padding: 10px 15px;
    background-color: #fff;
    color: #5AABA5;
    text-align: center;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #5AABA5;
}

.mobile-utility-links a:hover {
    background-color: #5AABA5;
    color: #fff;
}

/* Mobile Search */
.mobile-search {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    gap: 8px;
}

.mobile-search input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.mobile-search button {
    padding: 10px 18px;
    background-color: #5AABA5;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

/* Mobile Main Navigation */
.mobile-main-nav {
    padding: 20px 0;
}

.mobile-main-nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-main-nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-main-nav > ul > li.has-submenu {
    position: relative;
}

.mobile-main-nav > ul > li > a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.mobile-main-nav > ul > li.has-submenu > a {
    padding-right: 50px;
}

.mobile-main-nav > ul > li > a:hover {
    background-color: #f8f9fa;
    color: #5AABA5;
}

/* Submenu Toggle Button */
.submenu-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5AABA5;
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-main-nav > ul > li.active .submenu-toggle {
    transform: translateY(-50%) rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.mobile-main-nav > ul > li.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    font-size: 14px;
    font-weight: normal;
    transition: all 0.3s;
}

.mobile-submenu li a:hover {
    background-color: #e8f5f4;
    color: #5AABA5;
    padding-left: 45px;
}

/* Search Box */
.search-box {
    display: flex;
}

.search-box input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 200px;
}

.search-box button {
    padding: 8px 16px;
    background-color: #5AABA5;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #4A9A94;
}

/* Main Visual */
.main-visual {
    background: linear-gradient(135deg, #A8D5BA 0%, #5AABA5 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.visual-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.visual-content {
    position: relative;
    z-index: 2;
}

.visual-content h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.visual-content .subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.visual-content .description {
    font-size: 18px;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

.content-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Sections */
section {
    margin-bottom: 60px;
}

section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #5AABA5;
}

/* Notice Section */
.notice-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.notice-list li {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.notice-list a:hover {
    color: #5AABA5;
}

.notice-title {
    flex: 1;
}

.notice-date {
    color: #999;
    font-size: 13px;
}

.more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #5AABA5;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.more-btn:hover {
    background-color: #4A9A94;
}

/* Customer Center */
.customer-center {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-info {
    margin-top: 20px;
}

.phone-number {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.phone-number .label {
    font-size: 16px;
    color: #666;
}

.phone-number .number {
    font-size: 36px;
    font-weight: bold;
    color: #5AABA5;
}

.working-hours {
    color: #666;
    font-size: 14px;
}

/* Service Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Test Category */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item h3 {
    padding: 20px;
    text-align: center;
    font-size: 22px;
    color: #333;
    background-color: #5AABA5;
    color: #fff;
}

/* About G Pet */
.about-gpet {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.about-content {
    text-align: center;
}

.brand-values h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.brand-values .highlight {
    color: #A8D846;
    font-weight: bold;
}

.brand-values p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #666;
}

.learn-more {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 40px;
    background-color: #5AABA5;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: #4A9A94;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info p {
    margin-bottom: 8px;
    color: #ddd;
}

.footer-copyright {
    text-align: right;
    color: #999;
    font-size: 13px;
}

/* Sub Pages */
.sub-visual {
    background: linear-gradient(135deg, #A8D5BA 0%, #5AABA5 100%);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 120px;
}

.sub-visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    min-height: 80px;
}

.sub-visual-text {
    text-align: center;
    z-index: 2;
}

.sub-visual h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.sub-visual p {
    font-size: 14px;
    opacity: 0.9;
}

.sub-visual-image {
    position: absolute;
    left: 0;
    bottom: -10px;
    animation: slideFromLeft 1.5s ease-out;
}

.sub-visual-image img {
    width: 200px;
    height: auto;
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Sub Layout */
.sub-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 10px;
}

/* Side Menu */
.side-menu {
    background-color: #f9f4e8;
    padding: 0;
    border-radius: 8px;
    border: 2px solid #d4a574;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.side-menu h3 {
    background-color: #5AABA5;
    color: #fff;
    padding: 16px;
    margin: 0;
    border-radius: 6px 6px 0 0;
    font-size: 18px;
    text-align: center;
}

.side-menu ul {
    padding: 16px 20px;
}

.side-menu ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #e0d5b7;
}

.side-menu ul li:last-child {
    border-bottom: none;
}

.side-menu ul li a {
    display: block;
    padding: 12px 8px;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: left;
}

.side-menu ul li.active a,
.side-menu ul li a:hover {
    background: transparent;
    color: #5AABA5;
    font-weight: 600;
    transform: none;
    border: none;
    padding-left: 16px;
}

/* Side Menu with Submenu (for DNA pages) */
.menu-with-sub {
    padding: 16px 20px;
}

.menu-with-sub .has-submenu {
    margin-bottom: 0;
    border-bottom: 1px solid #e0d5b7;
    padding: 12px 0;
}

.menu-with-sub .has-submenu:last-child {
    border-bottom: none;
}

.menu-with-sub .has-submenu > a {
    display: block;
    padding: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.menu-with-sub .has-submenu > a::after {
    content: '▼';
    position: absolute;
    right: 8px;
    font-size: 10px;
}

.menu-with-sub .has-submenu.active > a {
    background: transparent;
    color: #5AABA5;
    border: none;
}

.submenu-list {
    display: block;
    padding: 8px 0 0 0;
    margin: 0;
}

.submenu-list li {
    margin-bottom: 0;
    border: none;
}

.submenu-list li a {
    display: block;
    padding: 8px 16px;
    color: #666;
    font-size: 13px;
    font-weight: normal;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s ease;
}

.submenu-list li a:hover {
    color: #5AABA5;
    background: transparent;
    padding-left: 24px;
    transform: none;
    border: none;
}

/* Side Contact */
.side-contact {
    padding: 20px;
    background-color: #f8f9fa;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
}

.side-contact h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.side-contact .phone {
    font-size: 28px;
    font-weight: bold;
    color: #5AABA5;
    margin-bottom: 10px;
}

.side-contact .time {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.side-contact .info {
    font-size: 13px;
    color: #999;
}

/* Content Area */
.content-area {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 500px;
}

.page-title {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #5AABA5;
}

.page-title h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.page-title .subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Greeting Content */
.greeting-intro-image {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.greeting-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.greeting-content {
    line-height: 1.8;
}

.greeting-intro {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.greeting-intro h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.brand-concept {
    text-align: center;
}

.brand-concept p {
    margin-bottom: 10px;
    font-size: 16px;
}

.brand-concept .highlight {
    font-size: 20px;
    font-weight: bold;
}

.brand-concept .highlight span {
    color: #A8D846;
}

.greeting-message {
    margin-top: 30px;
}

.message-box {
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #5AABA5;
}

.message-box h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.message-box p {
    line-height: 2;
    color: #555;
    margin-bottom: 10px;
}

.message-box .signature {
    margin-top: 30px;
    text-align: right;
    font-size: 16px;
}

/* Business Content */
.business-content {
    line-height: 1.8;
}

.business-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.business-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5AABA5;
}

.business-detail {
    margin-top: 20px;
}

.business-detail p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stat-item h4 {
    font-size: 18px;
    color: #5AABA5;
    margin-bottom: 15px;
    text-align: center;
}

.stat-item ul {
    list-style: disc;
    padding-left: 20px;
}

.stat-item ul li {
    margin-bottom: 8px;
    color: #666;
}

.service-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 20px;
    color: #5AABA5;
    margin-bottom: 15px;
}

.service-box h5 {
    font-size: 16px;
    color: #333;
    margin: 20px 0 15px;
}

.service-box p {
    color: #666;
    margin-bottom: 15px;
}

.service-box ul {
    list-style: disc;
    padding-left: 20px;
}

.service-box ul li {
    margin-bottom: 8px;
    color: #666;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none !important;
    padding-left: 0 !important;
}

.benefit-grid li {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
}

.mission {
    font-size: 18px;
    text-align: center;
    margin: 30px 0;
    line-height: 2;
    color: #333;
}

.vision {
    font-size: 20px;
    text-align: center;
    color: #5AABA5;
}

/* DNA Test Content */
.dna-test-content {
    line-height: 1.8;
}

.test-intro {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.test-intro h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5AABA5;
}

.test-intro p {
    margin-bottom: 15px;
    color: #666;
    line-height: 2;
}

.test-type {
    margin-bottom: 40px;
}

.test-type h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5AABA5;
}

.test-detail {
    padding: 20px;
    background-color: #fff;
}

.test-detail p {
    margin-bottom: 15px;
    color: #666;
    line-height: 2;
}

.test-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.test-item-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.test-item-box h4 {
    font-size: 18px;
    color: #5AABA5;
    margin-bottom: 15px;
    text-align: center;
}

.test-item-box ul {
    list-style: none;
    padding: 0;
}

.test-item-box ul li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.test-item-box ul li:last-child {
    border-bottom: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.step-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #5AABA5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: #666;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background-color: #5AABA5;
    color: #fff;
}

.btn-primary:hover {
    background-color: #4A9A94;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: #fff;
    color: #5AABA5;
    border: 2px solid #5AABA5;
}

.btn-secondary:hover {
    background-color: #5AABA5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Apply Form Styles */
.apply-form-container {
    background-color: #fff;
    padding: 0;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5AABA5;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5AABA5;
}

.test-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.test-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.test-option:hover {
    border-color: #5AABA5;
    background-color: #f8f9fa;
}

.test-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.option-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.option-content p {
    font-size: 14px;
    color: #666;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 0;
}

/* Responsive Design */
/* Certification Section */
.certification-intro {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.certification-intro h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.certification-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.certification-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.certification-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff9e6;
    border-left: 4px solid #FFB800;
    border-radius: 8px;
}

.certification-note p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.certification-note p:last-child {
    margin-bottom: 0;
}

.cert-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.cert-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.cert-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s;
}

.cert-image img:hover {
    transform: scale(1.05);
}

.cert-info {
    padding: 10px 0;
}

.cert-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #5AABA5;
    padding-bottom: 10px;
}

.cert-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.cert-info p strong {
    color: #333;
    font-weight: 600;
}

/* Partners Section */
.partners-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #e0e0e0;
}

.partners-section .section-desc {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.total-count {
    font-size: 16px;
    color: #333;
}

.total-count strong {
    color: #5AABA5;
    font-size: 20px;
}

.search-box-partners {
    display: flex;
    gap: 5px;
}

.search-box-partners input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
}

.search-box-partners button {
    padding: 8px 20px;
    background-color: #5AABA5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box-partners button:hover {
    background-color: #4A9A94;
}

.partners-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.partners-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.partners-table thead {
    background-color: #5AABA5;
    color: white;
}

.partners-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.partners-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.partners-table tbody tr:hover {
    background-color: #f8f9fa;
}

.partners-table tbody tr:last-child {
    border-bottom: none;
}

.partners-table td {
    padding: 12px 15px;
    color: #333;
    font-size: 14px;
}

.partners-table td:first-child {
    font-weight: 600;
    color: #5AABA5;
}

.partners-table td a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.partners-table td a:hover {
    color: #5AABA5;
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.page-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    background-color: #5AABA5;
    color: white;
    border-color: #5AABA5;
}

.page-btn.active {
    background-color: #5AABA5;
    color: white;
    border-color: #5AABA5;
}

/* Location Section */
.location-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #e0e0e0;
}

.location-content {
    margin-top: 30px;
}

.map-container {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.info-icon {
    font-size: 32px;
    min-width: 40px;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-content p.sub-info {
    font-size: 12px;
    color: #999;
}

.info-content a {
    color: #5AABA5;
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: #4A9A94;
    text-decoration: underline;
}

@media (max-width: 768px) {
    /* Container Optimization */
    .container {
        padding: 0 15px;
    }

    /* Content Area Padding */
    .content-area {
        padding: 20px 15px;
    }

    /* Main Content Padding */
    .main-content {
        padding: 15px 0;
    }

    /* Page Title */
    .page-title h2 {
        font-size: 24px;
    }

    .page-title .subtitle {
        font-size: 14px;
    }

    /* Sub Visual */
    .sub-visual {
        padding: 25px 15px;
        min-height: 100px;
    }

    .sub-visual h1 {
        font-size: 24px;
    }

    .sub-visual p {
        font-size: 13px;
    }

    .certification-grid {
        grid-template-columns: 1fr;
    }

    .sub-visual-content {
        flex-direction: column;
        gap: 20px;
        min-height: 100px;
    }

    .sub-visual-text {
        text-align: center;
    }

    .sub-visual-image {
        position: relative;
        left: auto;
        bottom: auto;
    }

    .sub-visual-image img {
        width: 150px;
    }

    /* Header Optimization */
    .header {
        padding: 0;
    }

    /* Hide Utility Bar on mobile */
    .header-utility-bar {
        display: none;
    }

    /* Header Top - Mobile Optimized */
    .header-top {
        padding: 10px 0;
        flex-wrap: nowrap;
        gap: 10px;
        min-height: 65px;
    }

    /* Logo Size - Mobile Optimized */
    .logo img {
        height: 45px;
        width: auto;
    }

    /* Hide Desktop Navigation */
    .main-nav {
        display: none;
    }

    /* Show Hamburger Menu */
    .hamburger-menu {
        display: flex;
    }

    /* Hide Desktop Only Elements */
    .desktop-only {
        display: none;
    }

    /* Hide Search Box on Mobile */
    .search-box {
        display: none;
    }

    /* Hide Desktop Language Selector */
    .header-utility-bar .lang-selector-wrapper,
    .header-utility-bar .lang-selector {
        display: none !important;
    }

    /* Hide Mobile Language Selector in Hamburger Menu */
    .language-selector-mobile {
        display: none !important;
    }

    /* Show Mobile Language Selector in Header (가운데) */
    .mobile-lang-selector {
        display: block !important;
    }

    .mobile-lang-select {
        font-size: 13px;
        padding: 6px 8px;
        border: 1px solid #5AABA5;
        border-radius: 4px;
        background-color: white;
        color: #5AABA5;
        font-weight: 500;
        cursor: pointer;
        outline: none;
    }

    .mobile-lang-select:focus {
        border-color: #5AABA5;
        box-shadow: 0 0 0 2px rgba(90, 171, 165, 0.2);
    }

    /* Header Top - Flexbox Layout for Mobile */
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .mobile-lang-selector {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        padding: 0 10px;
    }

    .header-utils {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 0;
    }

    /* Header Utils - Right Aligned */
    .header-utils {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    /* Main Visual */
    .main-visual {
        padding: 60px 15px;
        min-height: 350px;
    }

    .visual-content h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .visual-content .subtitle {
        font-size: 18px;
    }

    .visual-content .description {
        font-size: 14px;
    }

    /* Sections */
    section {
        margin-bottom: 40px;
    }

    section h2 {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .content-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .service-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    /* Notice Section */
    .notice-section {
        padding: 20px;
    }

    .notice-title {
        font-size: 14px;
    }

    /* Customer Center */
    .customer-center {
        padding: 20px;
    }

    .phone-number .number {
        font-size: 28px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
        margin-top: 50px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-info p {
        font-size: 13px;
    }

    .footer-copyright {
        text-align: center;
        font-size: 12px;
    }

    /* Sub Layout */
    .sub-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 15px;
    }

    .side-menu {
        position: static;
        margin-bottom: 20px;
    }

    .side-menu h3 {
        font-size: 16px;
        padding: 14px;
    }

    .side-menu ul {
        padding: 12px 15px;
    }

    .side-menu ul li a {
        font-size: 13px;
        padding: 10px 8px;
    }

    /* Side Contact */
    .side-contact {
        padding: 15px;
        margin: 15px;
    }

    .side-contact h4 {
        font-size: 14px;
    }

    .side-contact .phone {
        font-size: 24px;
    }

    .side-contact .time,
    .side-contact .info {
        font-size: 12px;
    }

    /* Greeting Content */
    .greeting-intro {
        padding: 20px;
        margin-bottom: 30px;
    }

    .greeting-intro h3 {
        font-size: 20px;
    }

    .brand-concept p {
        font-size: 14px;
    }

    .brand-concept .highlight {
        font-size: 16px;
    }

    .message-box {
        padding: 20px;
    }

    .message-box h4 {
        font-size: 18px;
    }

    .message-box p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Business Content */
    .business-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .business-section h3 {
        font-size: 20px;
    }

    .project-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .service-box {
        padding: 20px;
        margin-bottom: 15px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .benefit-grid li {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* DNA Test Content */
    .test-intro {
        padding: 20px;
        margin-bottom: 30px;
    }

    .test-intro h3 {
        font-size: 18px;
    }

    .test-items-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .test-item-box {
        padding: 20px;
    }

    .test-item-box h4 {
        font-size: 16px;
    }

    .test-item-box ul li {
        font-size: 13px;
        padding: 6px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-item {
        padding: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .step-item h4 {
        font-size: 15px;
    }

    .step-item p {
        font-size: 13px;
    }

    /* Action Buttons */
    .action-buttons {
        flex-direction: column;
        margin-top: 30px;
        padding-top: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    /* Forms */
    .form-section {
        padding: 20px;
    }

    .form-section h3 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    /* Partners */
    .partners-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 12px;
    }

    .total-count {
        font-size: 14px;
        text-align: center;
    }

    .search-box-partners {
        flex-direction: column;
    }

    .search-box-partners input {
        width: 100%;
        font-size: 13px;
    }

    .search-box-partners button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .partners-table {
        font-size: 12px;
    }

    .partners-table th,
    .partners-table td {
        padding: 8px 5px;
        font-size: 12px;
    }

    .pagination {
        gap: 5px;
        flex-wrap: wrap;
    }

    .page-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Location */
    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-info-item {
        padding: 18px;
        gap: 12px;
    }

    .info-icon {
        font-size: 26px;
        min-width: 35px;
    }

    .info-content h4 {
        font-size: 15px;
    }

    .info-content p {
        font-size: 13px;
    }

    /* Tables */
    table {
        font-size: 13px;
    }

    table th,
    table td {
        padding: 10px 8px;
    }
}

/* DNA Test Pages */
.test-main-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.test-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.dna-test-content {
    padding: 20px 0;
}

.test-intro {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #5AABA5;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

.test-type {
    margin-bottom: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.test-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.test-type-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5AABA5;
}

.test-type-header h3 {
    font-size: 22px;
    color: #5AABA5;
    margin: 0;
    font-weight: 600;
}

.test-detail p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.test-detail p:last-child {
    margin-bottom: 0;
}

/* Side Menu with Submenu */
.menu-with-sub {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-with-sub > li {
    margin-bottom: 5px;
}

.menu-with-sub > li > a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 600;
}

.menu-with-sub > li.active > a,
.menu-with-sub > li > a:hover {
    background-color: #5AABA5;
    color: white;
}

.submenu-list {
    list-style: none;
    padding: 10px 0 10px 20px;
    margin: 0;
    display: none;
}

.has-submenu.active .submenu-list {
    display: block;
}

.submenu-list li {
    margin-bottom: 5px;
}

.submenu-list li a {
    display: block;
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s;
}

.submenu-list li a:hover {
    background-color: #e8f5f4;
    color: #5AABA5;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .test-type {
        padding: 20px;
    }

    .test-main-image {
        margin-bottom: 30px;
    }

    .test-intro {
        padding: 20px;
    }

    .intro-text p {
        font-size: 14px;
    }

    .test-detail p {
        font-size: 14px;
    }
}

/* Accordion Styles */
.accordion-container {
    margin-top: 20px;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
}

.accordion-header:hover {
    background-color: #e8f5f4;
}

.accordion-item.active .accordion-header {
    background-color: #5AABA5;
}

.accordion-item.active .accordion-header h4,
.accordion-item.active .accordion-header .accordion-icon {
    color: white;
}

.accordion-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.accordion-icon {
    font-size: 24px;
    font-weight: bold;
    color: #5AABA5;
    transition: transform 0.3s, color 0.3s;
    min-width: 30px;
    text-align: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
    background-color: white;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 20px 25px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.accordion-content p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.test-subtitle {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-header h4 {
        font-size: 16px;
    }

    .accordion-icon {
        font-size: 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 15px 20px;
    }

    .accordion-content p {
        font-size: 14px;
    }
}

/* Tumor Test Styles */
.tumor-tests {
    margin-top: 30px;
}

.tumor-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #5AABA5;
    transition: all 0.3s;
}

.tumor-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.tumor-item h4 {
    color: #5AABA5;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tumor-item p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.test-description {
    margin-bottom: 30px;
    padding: 20px 25px;
    background-color: #fff9e6;
    border-radius: 8px;
    border: 1px solid #ffe9a3;
}

.test-description p {
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

@media (max-width: 768px) {
    .tumor-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .tumor-item h4 {
        font-size: 16px;
    }

    .tumor-item p {
        font-size: 14px;
    }

    .test-description {
        padding: 15px 20px;
    }

    .test-description p {
        font-size: 14px;
    }
}

/* Family Test Styles */
.family-tests {
    margin-top: 30px;
}

.family-test-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #5AABA5;
    transition: all 0.3s;
}

.family-test-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.family-test-item h4 {
    color: #5AABA5;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.family-test-item p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.test-intro-text {
    margin-bottom: 30px;
    padding: 20px 25px;
    background-color: #fff9e6;
    border-radius: 8px;
    border: 1px solid #ffe9a3;
}

.test-intro-text p {
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

@media (max-width: 768px) {
    .family-test-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .family-test-item h4 {
        font-size: 16px;
    }

    .family-test-item p {
        font-size: 14px;
    }

    .test-intro-text {
        padding: 15px 20px;
    }

    .test-intro-text p {
        font-size: 14px;
    }
}

/* Infectious Disease Test Styles */
.infectious-tests {
    margin-top: 30px;
}

.infectious-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #5AABA5;
    transition: all 0.3s;
}

.infectious-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.infectious-item h4 {
    color: #5AABA5;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.infectious-item p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

@media (max-width: 768px) {
    .infectious-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .infectious-item h4 {
        font-size: 16px;
    }

    .infectious-item p {
        font-size: 14px;
    }
}

/* Test Items Page Styles */
.side-action-btn {
    margin: 20px 0;
    padding: 0;
}

.btn-result-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background-color: #5AABA5;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: left;
}

.btn-result-check:hover {
    background-color: #4a9b95;
    transform: translateX(5px);
}

.btn-result-check .arrow {
    font-size: 12px;
    margin-left: 10px;
}

.test-items-content {
    padding: 20px 0;
}

.test-items-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.test-items-section:last-of-type {
    border-bottom: none;
}

.test-items-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.institute-name {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.test-items-diagram {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.test-items-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disease-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.disease-category {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #5AABA5;
}

.disease-category h4 {
    font-size: 16px;
    color: #5AABA5;
    margin-bottom: 12px;
    font-weight: 600;
}

.disease-category ul {
    list-style: none;
    padding: 0;
}

.disease-category ul li {
    padding: 6px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.disease-category ul li:before {
    content: "•";
    color: #5AABA5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .disease-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .disease-category {
        padding: 15px;
    }

    .disease-category h4 {
        font-size: 15px;
    }

    .disease-category ul li {
        font-size: 13px;
    }

    .btn-result-check {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Test Process Page Styles */
.test-process-content {
    padding: 20px 0;
}

.process-diagram-section {
    margin-bottom: 50px;
}

.process-diagram-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.process-diagram {
    text-align: center;
    margin: 30px 0;
}

.process-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.process-info-section {
    margin-bottom: 50px;
}

.info-box {
    margin-bottom: 25px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #5AABA5;
}

.info-box.important {
    background-color: #fff9e6;
    border-left-color: #FFB800;
}

.info-box h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-box p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.sampling-methods {
    margin-bottom: 50px;
}

.sampling-methods h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.sampling-method {
    margin-bottom: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.sampling-method:hover {
    border-color: #5AABA5;
    box-shadow: 0 4px 12px rgba(90, 171, 165, 0.15);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background-color: #5AABA5;
    color: white;
}

.method-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #5AABA5;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.method-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.method-content {
    padding: 25px;
    background-color: white;
}

.method-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-content ul li {
    padding: 10px 0;
    padding-left: 25px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
}

.method-content ul li:before {
    content: "✓";
    color: #5AABA5;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.shipping-info {
    margin-bottom: 50px;
}

.shipping-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.shipping-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.shipping-step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.shipping-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .sampling-method {
        margin-bottom: 20px;
    }

    .method-header {
        padding: 15px 20px;
        gap: 10px;
    }

    .method-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .method-header h4 {
        font-size: 16px;
    }

    .method-content {
        padding: 20px;
    }

    .method-content ul li {
        font-size: 14px;
        padding: 8px 0 8px 20px;
    }

    .shipping-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shipping-step {
        padding: 20px;
    }

    .step-icon {
        font-size: 30px;
    }

    .info-box {
        padding: 20px;
    }

    .info-box h4 {
        font-size: 16px;
    }

    .info-box p {
        font-size: 14px;
    }
}

/* Apply Form Additional Styles */
.required-text {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.optional-text {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #555;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-label span {
    user-select: none;
}

.form-help-text {
    margin-top: 8px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.address-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.address-group input {
    flex: 1;
}

.btn-find-address {
    padding: 12px 20px;
    background-color: #5AABA5;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-find-address:hover {
    background-color: #4a9b95;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #555;
}

.checkbox-label:hover {
    background-color: #e8f5f4;
    border-color: #5AABA5;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: #5AABA5;
    font-weight: 600;
}

.agreement-text {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.agreement-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.agreement-text .form-group {
    max-width: 300px;
    margin: 0 auto;
}

.privacy-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.privacy-content h4 {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.privacy-content h4:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content ul li {
    padding: 8px 0;
    padding-left: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    position: relative;
}

.privacy-content ul li:before {
    content: "•";
    color: #5AABA5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-agreement {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.checkbox-label.large {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    justify-content: center;
    background-color: white;
    border: 2px solid #5AABA5;
    padding: 15px 20px;
}

.checkbox-label.large input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .checkbox-label {
        padding: 10px 12px;
        font-size: 13px;
    }

    .address-group {
        flex-direction: column;
    }

    .btn-find-address {
        width: 100%;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-content h4 {
        font-size: 15px;
    }

    .privacy-content p,
    .privacy-content ul li {
        font-size: 13px;
    }
}

/* Test Result Page Styles */
.result-content {
    padding: 20px 0;
}

.result-search-area {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.search-box-result {
    display: flex;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.search-box-result input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-box-result button {
    padding: 12px 25px;
    background-color: #5AABA5;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.search-box-result button:hover {
    background-color: #4a9b95;
}

.result-table-wrapper {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.result-table thead {
    background-color: #5AABA5;
    color: white;
}

.result-table thead th {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.result-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.result-table tbody tr:hover {
    background-color: #f8f9fa;
}

.result-table tbody tr:last-child {
    border-bottom: none;
}

.result-table tbody td {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.result-table tbody td.result-title {
    text-align: left;
    color: #333;
    font-weight: 500;
}

.result-table tbody td.result-title:hover {
    color: #5AABA5;
    text-decoration: underline;
}

.result-notice {
    padding: 25px;
    background-color: #fff9e6;
    border-radius: 10px;
    border-left: 4px solid #FFB800;
}

.result-notice h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.result-notice ul {
    list-style: none;
    padding: 0;
}

.result-notice ul li {
    padding: 8px 0;
    padding-left: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    position: relative;
}

.result-notice ul li:before {
    content: "•";
    color: #FFB800;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-result-check.active {
    background-color: #4a9b95;
}

@media (max-width: 768px) {
    .result-search-area {
        justify-content: stretch;
    }

    .search-box-result {
        max-width: 100%;
    }

    .search-box-result input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .search-box-result button {
        padding: 10px 15px;
        font-size: 13px;
    }

    .result-table thead th {
        padding: 12px 8px;
        font-size: 13px;
    }

    .result-table tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .result-table thead th:nth-child(1),
    .result-table tbody td:nth-child(1) {
        display: none;
    }

    .result-table thead th:nth-child(3),
    .result-table tbody td:nth-child(3) {
        width: 80px;
    }

    .result-table thead th:nth-child(4),
    .result-table tbody td:nth-child(4) {
        width: 90px;
        font-size: 12px;
    }

    .result-notice {
        padding: 20px;
    }

    .result-notice h4 {
        font-size: 15px;
    }

    .result-notice ul li {
        font-size: 13px;
        padding: 6px 0 6px 18px;
    }
}


/* Additional Breakpoint for Small Mobile Devices */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Header */
    .logo img {
        height: 40px;
    }

    .header-top {
        padding: 8px 0;
        min-height: 60px;
    }

    .hamburger-menu {
        width: 35px;
        height: 35px;
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }

    /* Main Visual */
    .main-visual {
        padding: 40px 12px;
        min-height: 280px;
    }

    .visual-content h1 {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .visual-content .subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .visual-content .description {
        font-size: 13px;
    }

    /* Sub Visual */
    .sub-visual {
        padding: 20px 12px;
        min-height: 80px;
    }

    .sub-visual h1 {
        font-size: 20px;
    }

    .sub-visual p {
        font-size: 12px;
    }

    .sub-visual-image img {
        width: 120px;
    }

    /* Content Area */
    .content-area {
        padding: 15px 12px;
    }

    .page-title h2 {
        font-size: 20px;
    }

    .page-title .subtitle {
        font-size: 13px;
    }

    /* Sections */
    section {
        margin-bottom: 30px;
    }

    section h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Notice Section */
    .notice-section {
        padding: 15px;
    }

    .notice-list li {
        padding: 12px 0;
    }

    .notice-title {
        font-size: 13px;
    }

    .notice-date {
        font-size: 11px;
    }

    /* Customer Center */
    .customer-center {
        padding: 15px;
    }

    .phone-number .number {
        font-size: 24px;
    }

    .phone-number .label {
        font-size: 14px;
    }

    .working-hours {
        font-size: 12px;
    }

    /* Side Menu */
    .side-menu h3 {
        font-size: 15px;
        padding: 12px;
    }

    .side-menu ul {
        padding: 10px 12px;
    }

    .side-menu ul li a {
        font-size: 12px;
        padding: 8px 6px;
    }

    /* Side Contact */
    .side-contact {
        padding: 12px;
        margin: 12px;
    }

    .side-contact h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .side-contact .phone {
        font-size: 20px;
    }

    .side-contact .time,
    .side-contact .info {
        font-size: 11px;
    }

    /* Greeting Content */
    .greeting-intro {
        padding: 15px;
    }

    .greeting-intro h3 {
        font-size: 18px;
    }

    .brand-concept p {
        font-size: 13px;
    }

    .brand-concept .highlight {
        font-size: 15px;
    }

    .message-box {
        padding: 15px;
        border-left-width: 3px;
    }

    .message-box h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .message-box p {
        font-size: 13px;
        line-height: 1.7;
    }

    /* Business Content */
    .business-section {
        padding: 15px;
    }

    .business-section h3 {
        font-size: 18px;
    }

    .stat-item,
    .service-box {
        padding: 15px;
    }

    /* DNA Test Content */
    .test-intro {
        padding: 15px;
    }

    .test-intro h3 {
        font-size: 16px;
    }

    .test-item-box {
        padding: 15px;
    }

    .test-item-box h4 {
        font-size: 15px;
    }

    .test-item-box ul li {
        font-size: 12px;
    }

    /* Process Steps */
    .step-item {
        padding: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .step-item h4 {
        font-size: 14px;
    }

    .step-item p {
        font-size: 12px;
    }

    /* Action Buttons */
    .action-buttons {
        gap: 12px;
        margin-top: 25px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Forms */
    .form-section {
        padding: 15px;
    }

    .form-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* Test Items */
    .disease-category {
        padding: 15px;
    }

    .disease-category h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .disease-category ul li {
        font-size: 12px;
        padding: 5px 0;
        padding-left: 12px;
    }

    /* Test Process */
    .method-header {
        padding: 12px 15px;
        gap: 10px;
    }

    .method-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .method-header h4 {
        font-size: 15px;
    }

    .method-content {
        padding: 15px;
    }

    .method-content ul li {
        font-size: 13px;
        padding: 8px 0 8px 20px;
    }

    .shipping-step {
        padding: 15px;
        gap: 15px;
    }

    .step-icon {
        font-size: 28px;
    }

    .step-content h4 {
        font-size: 14px;
    }

    .step-content p {
        font-size: 12px;
    }

    .info-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .info-box h4 {
        font-size: 15px;
    }

    .info-box p {
        font-size: 13px;
    }

    /* Result Table */
    .result-table thead th {
        padding: 10px 5px;
        font-size: 12px;
    }

    .result-table tbody td {
        padding: 10px 5px;
        font-size: 12px;
    }

    /* Partners Table */
    .partners-table th,
    .partners-table td {
        padding: 6px 4px;
        font-size: 11px;
    }

    /* Location */
    .location-info-item {
        padding: 15px;
    }

    .info-icon {
        font-size: 24px;
        min-width: 32px;
    }

    .info-content h4 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 25px 0 12px;
        margin-top: 40px;
    }

    .footer-info p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    /* Mobile Menu */
    .mobile-menu-container {
        width: 90%;
        max-width: 320px;
    }

    .mobile-menu-header {
        padding: 12px 15px;
    }

    .mobile-menu-header .logo img {
        height: 35px;
    }

    .mobile-menu-close {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }

    .mobile-utility-links {
        padding: 12px 15px;
    }

    .mobile-utility-links li {
        flex: 1 1 100%;
    }

    .mobile-utility-links a {
        padding: 8px 12px;
        font-size: 12px;
    }

    .mobile-search {
        padding: 12px 15px;
    }

    .mobile-search input {
        padding: 8px 10px;
        font-size: 13px;
    }

    .mobile-search button {
        padding: 8px 15px;
        font-size: 13px;
    }

    .mobile-main-nav {
        padding: 15px 0;
    }

    .mobile-main-nav > ul > li > a {
        padding: 12px 15px;
        font-size: 15px;
    }

    .mobile-submenu li a {
        padding: 10px 15px 10px 35px;
        font-size: 13px;
    }

    /* Certification */
    .cert-item {
        padding: 15px;
    }

    .cert-info h4 {
        font-size: 16px;
    }

    .cert-info p {
        font-size: 13px;
    }

    /* Accordion */
    .accordion-header {
        padding: 12px 15px;
    }

    .accordion-header h4 {
        font-size: 15px;
    }

    .accordion-icon {
        font-size: 18px;
        min-width: 25px;
    }

    .accordion-item.active .accordion-content {
        padding: 15px;
    }

    .accordion-content p {
        font-size: 13px;
    }

    /* Privacy */
    .privacy-section {
        padding: 15px;
    }

    .privacy-content h4 {
        font-size: 14px;
    }

    .privacy-content p,
    .privacy-content ul li {
        font-size: 12px;
    }

    .checkbox-label.large {
        font-size: 14px;
        padding: 12px 15px;
    }

    /* Result Notice */
    .result-notice {
        padding: 15px;
    }

    .result-notice h4 {
        font-size: 14px;
    }

    .result-notice ul li {
        font-size: 12px;
    }
}
