/* 기본 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 대부업등록번호 표시 */
.license-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 13px;
    color: #666;
}

.license-bar p {
    text-align: center;
    margin: 0;
}

/* 헤더 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* 로고 */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* 네비게이션 */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 0;
    display: block;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #0066cc;
}

/* 모바일 메뉴 토글 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* 메인 비주얼 */
.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #fff;
    color: #0066cc;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 섹션 공통 스타일 */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0066cc;
}

/* 회사소개 섹션 */
.company-section {
    background-color: #f8f9fa;
}

.company-content p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* 정식등록업체 섹션 */
.registration-section {
    background-color: #fff;
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.info-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
}

.info-table td {
    padding: 20px;
    color: #666;
}

/* 고객사례 섹션 */
.cases-section {
    background-color: #f8f9fa;
}

.cases-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.case-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.case-header h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.case-date {
    font-size: 14px;
    color: #999;
}

.case-summary {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.case-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.case-link:hover {
    color: #004999;
}

/* 페이지네이션 */
.cases-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-page {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-page:hover {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.btn-page.active {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* 오시는길 섹션 */
.location-section {
    background-color: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item strong {
    display: block;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 2px dashed #ddd;
}

/* 푸터 */
.footer {
    background-color: #2c3e50;
    color: #fff;
}

.ft_top {
    background-color: #34495e;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ft_top_content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ft_link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    padding: 5px 10px;
}

.ft_link:hover {
    color: #0066cc;
}

.ft_txt {
    padding: 40px 0;
}

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

.footer-info p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-info strong {
    color: #fff;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999 !important;
    font-size: 13px !important;
}

.footer-notice {
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

.footer-notice p {
    font-size: 13px;
    color: #ecf0f1;
    margin-bottom: 5px;
    line-height: 1.8;
}

.footer-notice p:last-child {
    margin-bottom: 0;
}

/* 반응형 디자인 - 태블릿 */
@media (max-width: 992px) {
    .nav-list {
        gap: 25px;
    }

    .nav-list li a {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .location-content {
        grid-template-columns: 1fr;
    }
}

/* 반응형 디자인 - 모바일 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: relative;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 0;
        min-width: 200px;
        display: none;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        padding: 15px 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .cases-list {
        grid-template-columns: 1fr;
    }

    .ft_top_content {
        gap: 15px;
    }

    .ft_link {
        font-size: 13px;
    }

    .ft_txt {
        padding: 30px 0;
    }

    .footer-info p {
        font-size: 13px;
    }

    .info-table th,
    .info-table td {
        padding: 15px;
        font-size: 14px;
    }

    .info-table th {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .license-bar {
        font-size: 12px;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .case-item {
        padding: 20px;
    }

    .case-header h3 {
        font-size: 18px;
    }

    .info-table th,
    .info-table td {
        padding: 12px;
        font-size: 13px;
        display: block;
        width: 100%;
    }

    .info-table th {
        background-color: #f8f9fa;
        border-bottom: none;
        padding-bottom: 8px;
    }

    .info-table td {
        padding-top: 0;
        padding-bottom: 15px;
    }
}

/* ===== 추가 스타일 (SEO 및 다중 페이지용) ===== */

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    font-size: 14px;
    color: #666;
}

.breadcrumb-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list li a:hover {
    color: #0066cc;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-list li[aria-current="page"] {
    color: #0066cc;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* Services Section (홈페이지) */
.services-section {
    background-color: #f8f9fa;
}

.feature-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s;
}

.feature-link:hover {
    color: #004999;
}

/* Cases Preview Section */
.cases-preview-section {
    background-color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #0066cc;
}

/* Company Intro Section */
.company-intro-section {
    background-color: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.intro-text p {
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
}

/* Process Section */
.process-section {
    background-color: #fff;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.process-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.process-item p {
    font-size: 14px;
    color: #666;
}

.process-arrow {
    font-size: 24px;
    color: #0066cc;
    font-weight: 700;
}

/* Registration Section Updates */
.registration-notice {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
    margin-bottom: 40px;
}

.registration-notice h3 {
    font-size: 20px;
    color: #0066cc;
    margin-bottom: 15px;
}

.registration-notice p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Legal Section */
.legal-section {
    background-color: #f8f9fa;
}

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

.legal-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* Verification Section */
.verification-section {
    background-color: #fff;
}

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

.verification-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.verification-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Location Section Updates */
.location-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-text p,
.info-text a {
    color: #666;
    line-height: 1.6;
}

.info-text a {
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #0066cc;
}

.map-container {
    width: 100%;
    height: 450px;
    background-color: #f0f0f0;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

/* Transport Section */
.transport-section {
    background-color: #f8f9fa;
}

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

.transport-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.transport-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.transport-item ul {
    list-style: none;
    padding: 0;
}

.transport-item li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

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

.transport-item strong {
    color: #0066cc;
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    background-color: #fff;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.terms-article {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.terms-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.terms-article h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.terms-article h3 {
    font-size: 17px;
    color: #0066cc;
    margin: 20px 0 10px;
}

.terms-article p,
.terms-article li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.terms-article ol,
.terms-article ul {
    padding-left: 25px;
    margin: 15px 0;
}

.terms-article ol li,
.terms-article ul li {
    margin-bottom: 10px;
}

.terms-article ul ul {
    margin-top: 10px;
}

.privacy-notice {
    background: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    margin-top: 40px;
}

.privacy-notice h3 {
    font-size: 18px;
    color: #856404;
    margin-bottom: 15px;
}

.privacy-notice p {
    font-size: 14px;
    color: #856404;
    margin-bottom: 15px;
}

.privacy-notice ul {
    list-style: none;
    padding: 0;
}

.privacy-notice li {
    font-size: 14px;
    color: #856404;
    padding: 5px 0;
}

/* 반응형 추가 */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 30px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .process-arrow {
        display: none;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 10px 0;
    }

    .breadcrumb-list {
        font-size: 13px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 14px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .verification-steps {
        flex-direction: column;
        align-items: center;
    }

    .terms-content {
        padding: 20px;
    }

    .terms-article h2 {
        font-size: 18px;
    }

    .map-container {
        height: 300px;
    }
}
