:root {
    --primary-color: #262F97;
    --text-primary: #222222;
    --text-secondary: #666666;
    --text-tertiary: #888888;
    --border-color: #DCDFE3;
    --bg-gray: #EBEBEB;
    --white: #FFFFFF;
    --black: #000000;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', sans-serif;
    /* line-height: 1.4; */
    color: var(--text-primary);
}

/* Header & Navigation */
.header {
    background: var(--white);
    border-top: unset;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: unset;
    height: unset;
    min-width: unset;
}

.nav {
    width: 100%;
}

.nav-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1400px;
    margin-left: 100px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav li {
    align-items: center;
    display: flex;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-item-with-submenu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-divider {
    width: 1px;
    height: 11px;
    background: var(--text-secondary);
}

.submenu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.submenu-item {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.submenu-item:hover, .submenu-item.active {
    color: var(--primary-color);
}

.lang-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 17px;
}

.hero-desc {
    font-size: 24px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--white);
    border-bottom: 1px solid var(--bg-gray);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    height: 46px;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 15px;
}

.breadcrumb-item:hover {
	cursor: pointer;
	font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb-item.home {
    background: var(--primary-color);
    padding: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-item.active {
    font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb-divider {
    width: 1px;
    height: 46px;
    background: var(--bg-gray);
}

/* FAQ Search Section */
.faq-search-section {
    padding: 90px 0;
    text-align: center;
}

.faq-search-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 19px;
}

.faq-search-box {
    display: flex;
    gap: 8px;
    max-width: 702px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.faq-search-input {
    flex: 1;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
}

.faq-search-input::placeholder {
    color: var(--text-tertiary);
}

.faq-search-btn {
    width: 36px;
    height: 36px;
    background: #454545;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.faq-search-btn:hover {
    background: #666666;
}

.faq-search-btn img {
    width: 16px;
    height: 16px;
}
.faq-main-category-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 702px;
    margin: 0 auto;
}
.faq-category-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 702px;
    margin: 0 auto;
}

.faq-category-row {
    display: flex;
    gap: 12px;
}

.faq-category-btn {
    flex: 1;
    height: 46px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: none;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-category-btn:hover {
    background: #363A7A;
    color: var(--white);
    border-color: #363A7A;
}

.faq-category-btn.active {
    background: #363A7A;
    color: var(--white);
    border-color: #363A7A;
}

.faq-category-btn.active:hover {
    background: #363A7A;
    border-color: #363A7A;
}

/* Contact Section - Common */
.contact-section {
    position: relative;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.contact-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.contact-content .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.4;
}

.contact-content .title strong {
    font-weight: 700;
}

.contact-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--white);
    border-radius: 200px;
    background: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 180px;
    justify-content: center;
}

/* Contact Page Specific */
.contact-page {
    padding: 60px 0;
    background: var(--white);
}

.contact-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page .page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 19px;
}

.contact-page .search-section {
    margin-bottom: 45px;
}

.search-controls {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.select-group {
    position: relative;
    width: 140px;
}

.select-input {
    width: 100%;
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    color: #585E6A;
    background: var(--white);
    appearance: none;
    cursor: pointer;
}

.select-group::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.search-input-group {
    width: 240px;
}

.search-input {
    width: 100%;
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    color: #585E6A;
    background: var(--white);
}

.search-btn {
    width: 36px;
    height: 36px;
    background: #444444;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-btn svg {
    width: 16px;
    height: 16px;
}

/* List Styles */
.contact-list {
    border-top: 1px solid #D3D3D3;
}

.list-header {
    display: flex;
    background: #F6F6F6;
    height: 48px;
    border-bottom: 1px solid #D3D3D3;
}

.header-cell {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.list-item {
    display: flex;
    height: 50px;
    border-bottom: 1px solid #D3D3D3;
}

.item-cell {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-primary);
    white-space: nowrap;
}

.item-cell.text-left {
    justify-content: flex-start;
    white-space: normal;
    line-height: 20px;
}

.list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.total-count {
    font-size: 15px;
    color: #888888;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-btn {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #888888;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.page-btn.active {
    font-weight: 700;
    color: #363A7A;
}

.page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.page-btn svg {
    width: 16px;
    height: 16px;
}

.write-btn {
    width: 120px;
    height: 50px;
    background: #363A7A;
    border: none;
    border-radius: 4px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* Contact Banner */
.contact-banner {
    position: relative;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.contact-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.contact-banner-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.4;
}

.contact-banner-title strong {
    font-weight: 700;
}

.contact-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--white);
    border-radius: 200px;
    background: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 180px;
    justify-content: center;
}

/* FAQ Content Section */
.faq-content-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: normal;
}

.faq-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.faq-select {
    position: relative;
    width: 220px;
}

.faq-select-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    color: #333333;
    background: var(--white);
    appearance: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq-select::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.faq-contact-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 42px;
    padding: 8px 16px;
    background: #222222;
    border-radius: 4px;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    width: 220px;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.faq-contact-btn:hover {
    background: #363636;
}

.faq-contact-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-category {
    display: flex;
    gap: 12px;
    width: 698px;
    align-self: flex-start;
}

.faq-category-btn {
    flex: 1;
    height: 44px;
    border: 1px solid #CACACA;
    border-radius: 8px;
    background: none;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    padding: 0 10px;
}

.faq-category-btn.active {
    background: #363A7A;
    color: var(--white);
    border-color: #363A7A;
}

.faq-list {
    border-top: 1px solid #D3D3D3;
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #D3D3D3;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #F8F8F8;
}

.faq-q-mark {
    color: #363A7A;
    font-weight: 600;
    font-size: 16px;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    margin: 0;
    font-size: 16px;
    color: var(--text-primary);
    line-height: normal;
    margin-right: 115px;
}

.faq-toggle-btn {
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-btn.active {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px 24px;
    background: #F8F8F8;
}

.faq-item.active .faq-answer {
    display: flex;
}

.faq-a-mark {
    color: #363A7A;
    font-weight: 600;
    font-size: 16px;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-a-text {
    flex: 1;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.4;
    margin-right: 115px;
}

.faq-a-text p {
    margin: 0 0 16px;
}

.faq-a-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .faq-content-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .faq-controls {
        width: 100%;
        flex-direction: column;
    }

    .faq-select {
        width: 100%;
    }

    .faq-contact-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-category {
        width: 100%;
        flex-wrap: wrap;
    }

    .faq-category-btn {
        flex: 1 1 calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-q-text {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-a-text {
        font-size: 14px;
    }

    .faq-category-btn {
        flex: 1 1 100%;
    }
}

/* 반응형 스타일 수정 */
@media (max-width: 1920px) {
    .nav-inner {
        max-width: 1920px;
        padding: 20px 40px;
    }

    .nav-menu {
        width: 1400px;
        margin-left: 100px;
    }
}

@media (max-width: 1800px) {
    .nav-inner {
        max-width: 1600px;
        padding: 20px 40px;
    }

    .nav-menu {
        width: 1200px;
        margin-left: 75px;
    }

    .nav-item-with-submenu,
    .submenu {
        gap: 18px;
    }
}

@media (max-width: 1550px) {
    .nav-item-with-submenu {flex-wrap: wrap;justify-content: center;}
    .nav {gap: 20px;}
    .submenu {gap: 12px;flex-wrap: wrap;justify-content: center;}
    .lang-btn {margin-left: 20px;}
    .content-box {width: 100%}
    footer {min-width: 100%; max-width: 100%}
}

@media (max-width: 1440px) {
    .nav-inner {
        padding: 20px 30px;
    }

    .nav-menu {
        width: 1000px;
        margin-left: 50px;
    }

    .nav-item-with-submenu,
    .submenu {
        gap: 24px;
    }
}

@media (max-width: 1280px) {
    .nav-inner {
        padding: 20px;
    }

    .nav-menu {
        width: 800px;
        margin-left: 30px;
    }

    .nav-item-with-submenu,
    .submenu {
        gap: 16px;
    }

    .breadcrumb-container {
        padding: 0 20px;
    }

    .footer-inner {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        width: auto;
        margin-left: 15px;
    }

    .nav-item-with-submenu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .submenu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 20px;
    }

    .faq-main-category-container {
        max-width: 90%;
        margin-bottom: 60px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-search-box,
    .faq-category-container {
        max-width: 90%;
    }
    .nav {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .nav-inner {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        margin-left: 0;
    }

    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-item-with-submenu {
        flex-direction: column;
        gap: 10px;
    }

    .submenu {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .nav-divider {
        display: none;
    }

    .hero {
        height: 300px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .faq-category-row {
        flex-direction: column;
    }

    .contact-title {
        font-size: 24px;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 90px 0;
    background: var(--white);
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #FF0000;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
}

.form-textarea {
    resize: none;
    min-height: 160px;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.privacy-agreement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #F8F8F8;
    border-radius: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
}

.checkbox-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.checkbox-text {
    font-size: 16px;
    color: var(--text-primary);
}

.privacy-detail-btn {
    font-size: 16px;
    color: var(--text-primary);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary-color);
    border: none;
    border-radius: 4px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background: #4B4F8E;
}

.submit-btn svg {
    width: 20px;
    height: 16px;
}

@media (max-width: 1280px) {
    .contact-form-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-title {
        margin-bottom: 40px;
    }

    .contact-form {
        gap: 30px;
    }

    .privacy-agreement {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-form-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .form-group {
        gap: 8px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .checkbox-text,
    .privacy-detail-btn {
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1280px) {
    .contact-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0;
    }

    .contact-page .page-title {
        margin-bottom: 40px;
    }

    .search-controls {
        flex-wrap: wrap;
    }

    .select-group,
    .search-input-group {
        width: 100%;
    }

    .list-header,
    .list-item {
        display: none;
    }

    .list-footer {
        flex-direction: column;
        gap: 20px;
    }

    .write-btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--text-primary);
    padding: 60px 0;
    color: var(--text-tertiary);
    text-align: unset;
    display: block;
}

.footer-inner {
    max-width: 1200px;
    padding: 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    height: 20px;
    opacity: 0.4;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info p {
    font-size: 12px;
    color: #888888;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
}

.footer-links .link-privacy {
    font-weight: 600;
}

.footer-links .divider {
    color: #888888;
}

.footer-copyright {
    font-size: 12px;
    color: #888888;
    margin: 0;
}

.py-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.border-bottom-none {
	border-bottom: none;
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .footer-inner {
        padding: 0 20px;
    }

    .footer-info p {
        line-height: 1.6;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (min-width: 820px) {
	.mobile-header {
		display: none !important;
	}
	.header {
	   	display: unset;
	    align-items: unset;
	    transition: unset;
	}
	
    .logo {
    	height: 30px;
    	width: unset !important;
    }
    
    header dd {
        display: none !important;
    }
    
	main {
	    padding-top: 77px;
	}
		
    .footer-inner {
		margin: 0 auto;
    	min-width: 800px;
    }
}

@media (max-width: 819px) {
	.browser-header {
		display: none !important;
	}
    header .logo img {
        display: block;
        height: 13.2vmin;
        background-size: auto 5.3333vmin;
        background-position: 50%;
    }
    
    header dd {
        padding: 0 0 1.7333vmin;
        font-size: 2.2667vmin;
        font-weight: 400;
        line-height: 2.8vmin;
        color: #a4a4a4;
    }
    
    .faq-search-title {
    	margin-top: 19px;
    }
}