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

/* 기본 폰트 및 색상 */
:root {
    /* 메인 컬러 */
    --primary-color: #a6edcd;
    --secondary-color: #8ee4c3;
    --accent-color: #76dbb9;
    
    /* 텍스트 컬러 */
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --muted-text: #95a5a6;
    
    /* 배경 컬러 */
    --background-color: #ffffff;
    --light-bg: #f8f9fa;
    --lighter-bg: #f1f3f4;
    
    /* 테두리 및 그림자 */
    --border-color: #e9ecef;
    --border-light: #f1f3f4;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    
    /* 간격 */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    /* 섹션 간격 */
    --section-padding: 5rem;
    --section-padding-sm: 3rem;
    
    /* 카드 패딩 */
    --card-padding: 2rem;
    --card-padding-sm: 1.5rem;
    
    /* 그리드 간격 */
    --grid-gap: 2rem;
    --grid-gap-lg: 3rem;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 스타일 */
.header {
    background: var(--background-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .nav-link {
    text-decoration: none;
}

.logo .nav-link::after {
    display: none;
}

.logo-img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* 메인 콘텐츠 */
main {
    margin-top: 80px;
}

/* 히어로 섹션 */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #333333;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #333333;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333333;
    font-weight: 500;
    text-align: left;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333333;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1a5f4a, #2d8a6f);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(26, 95, 74, 0.3);
    border: 2px solid #1a5f4a;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d8a6f, #1a5f4a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 74, 0.4);
    border-color: #2d8a6f;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.hero-image {
    text-align: center;
}

.hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* 섹션 공통 스타일 */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

.section-description {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* 섹션 공통 패딩 */
.services,
.chaumji,
.pricing,
.about,
.message {
    padding: var(--section-padding) 0;
}

/* 섹션 배경 */
.services {
    background: var(--light-bg);
}

/* 서비스 섹션 헤더 */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-top: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* 누구를 만날 수 있는지 섹션 */
.who-to-meet {
    padding: var(--section-padding) 0;
    background-color: var(--lighter-bg);
}

.who-to-meet .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.member-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.member-feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.member-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-feature .feature-content {
    flex: 1;
}

.member-feature .feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f4a;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.member-feature .feature-content p {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.7;
    margin: 0;
}

.meeting-preparation {
    margin-top: 2rem; /* 상단 여백 줄임 */
    margin-bottom: 2rem; /* 하단 여백 추가 */
}

.preparation-card {
    padding: 2rem 2rem; /* 상하 패딩 줄임 (3rem → 2rem) */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.preparation-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.preparation-card h3 {
    font-size: 1.12rem; /* 1.4rem의 80% = 1.12rem */
    font-weight: 700;
    color: #1a5f4a;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.preparation-content {
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.preparation-content p {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.preparation-highlight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-top: 2rem;
}

.preparation-highlight p {
    color: #1a5f4a;
    font-style: italic;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 미팅 진행 절차 섹션 */
.meeting-process {
    padding: var(--section-padding) 0;
    background-color: var(--background-color);
}

.meeting-process .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    max-width: 100%;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 1.5rem;
}

.process-step {
    position: relative;
    margin-bottom: 0;
    width: calc(25% - 1.125rem);
    min-width: 200px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    width: auto;
    min-width: 8rem;
    height: 3rem;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow);
    padding: 0 1.5rem;
    white-space: nowrap;
}

.step-connector {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2rem;
    background: var(--border-color);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    height: 100%;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f4a;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.step-content p {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.7;
}

.process-summary {
    margin-top: 4rem;
    text-align: center;
    width: 100%;
    max-width: calc(4 * 280px + 3 * 1.5rem); /* process-step 4개 + gap 3개 */
    margin-left: auto;
    margin-right: auto;
}

.summary-card {
    padding: 2rem 2rem; /* preparation-card와 동일한 패딩 */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    text-align: center; /* preparation-card와 동일한 텍스트 정렬 */
    box-shadow: var(--shadow-lg);
    max-width: 64rem;
    margin: 0 auto;
}

.summary-card h3 {
    font-size: 1.12rem; /* 1.4rem의 80% = 1.12rem */
    font-weight: 700;
    color: #1a5f4a;
    line-height: 1.3; /* preparation-card h3와 동일한 줄 간격 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.summary-card p {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    max-width: 48rem;
    margin: 0 auto;
}

.chaumji {
    background: var(--background-color);
}

.pricing {
    background: var(--light-bg);
}

.about {
    background: var(--background-color);
}

.message {
    background: var(--light-bg);
}


    /* 서비스 섹션 */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--grid-gap-lg);
        max-width: 1000px;
        margin: 0 auto;
    }

    .service-card {
        background: var(--background-color);
        padding: var(--card-padding);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        text-align: left;
        border: 1px solid var(--border-light);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .service-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .service-icon-wrapper {
        width: 72px;
        height: 72px;
        background: rgba(26, 95, 74, 0.1); /* 더 진한 녹색 배경으로 대비 강화 */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        border: 2px solid rgba(26, 95, 74, 0.25); /* 테두리 색상 강화 */
        transition: all 0.3s ease;
    }

    .service-icon-wrapper:hover {
        background: rgba(26, 95, 74, 0.15); /* 호버 시 배경 강화 */
        border-color: rgba(26, 95, 74, 0.4); /* 호버 시 테두리 강화 */
        transform: scale(1.05);
    }

    .service-icon-wrapper i {
        font-size: 2rem;
        color: #1a5f4a; /* 더 진한 녹색으로 대비 강화 */
        transition: color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 가독성 향상 */
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: #1a5f4a; /* 더 진한 녹색으로 대비 강화 */
        font-weight: 700; /* 굵기 증가 */
        line-height: 1.3;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 가독성 향상 */
    }



    .service-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-section {
        margin-bottom: 1rem;
    }

    .service-section.text-center {
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #1a5f4a; /* 더 진한 녹색으로 대비 강화 */
        margin-bottom: 0.75rem;
        font-weight: 700; /* 굵기 증가 */
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); /* 가독성 향상 */
    }

    .section-description {
        color: var(--light-text);
        line-height: 1.6;
        margin: 0;
    }

    .service-highlight {
        background: rgba(26, 95, 74, 0.08); /* 더 진한 녹색 배경으로 대비 강화 */
        padding: var(--card-padding);
        border-radius: var(--border-radius);
        text-align: center;
        margin-top: 1rem;
        border: 2px solid rgba(26, 95, 74, 0.2); /* 테두리 두께 및 색상 강화 */
        transition: all 0.3s ease;
    }

    .service-highlight:hover {
        background: rgba(26, 95, 74, 0.12); /* 호버 시 배경 강화 */
        border-color: rgba(26, 95, 74, 0.4); /* 호버 시 테두리 강화 */
        transform: translateY(-2px);
    }


    .service-quote-highlight {
        background: rgba(26, 95, 74, 0.05); /* 더 진한 녹색 배경으로 대비 강화 */
        padding: var(--card-padding);
        border-radius: var(--border-radius);
        text-align: center;
        margin-top: 1rem;
        border: 2px solid rgba(26, 95, 74, 0.15); /* 테두리 두께 및 색상 강화 */
        transition: all 0.3s ease;
        max-width: 1000px; /* services-grid와 동일한 최대 너비 */
        margin-left: auto; /* 좌우 중앙 정렬 */
        margin-right: auto; /* 좌우 중앙 정렬 */
        width: 100%; /* services-grid와 동일한 너비 */
    }

    .service-quote-highlight:hover {
        background: rgba(26, 95, 74, 0.08); /* 호버 시 배경 강화 */
        border-color: rgba(26, 95, 74, 0.3); /* 호버 시 테두리 강화 */
        transform: translateY(-2px);
    }

    .quote-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .quote-arrow {
        color: #1a5f4a; /* 더 진한 녹색으로 대비 강화 */
        font-size: 1.25rem;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); /* 가독성 향상 */
    }

    .quote-text {
        color: #1a5f4a; /* 더 진한 녹색으로 대비 강화 */
        font-style: italic;
        font-weight: 700; /* 굵기 증가 */
        font-size: 1.1rem;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); /* 가독성 향상 */
    }

    .quote-title {
        color: #1a5f4a; /* 더 진한 녹색으로 대비 강화 */
        font-weight: 700; /* 굵기 증가 */
        font-size: 1.2rem;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); /* 가독성 향상 */
        letter-spacing: -0.01em;
    }

    /* 채움지 섹션 */
    .chaumji-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .chaumji-subtitle {
        font-size: 1.25rem;
        color: var(--light-text);
        margin-top: 1rem;
        font-weight: 500;
        line-height: 1.4;
    }

    .chaumji-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--grid-gap-lg);
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }

    .chaumji-image {
        order: 2;
    }

    .chaumji-img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
    }

    .chaumji-features {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .chaumji-feature {
        background: var(--background-color);
        padding: var(--card-padding);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
    }

    .chaumji-feature:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .chaumji-feature:nth-child(1) {
        border-left: 4px solid #ef4444;
    }

    .chaumji-feature:nth-child(2) {
        border-left: 4px solid #3b82f6;
    }

    .chaumji-feature:nth-child(3) {
        border-left: 4px solid #10b981;
    }

    .feature-title {
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .feature-title.red {
        color: #ef4444;
    }

    .feature-title.blue {
        color: #3b82f6;
    }

    .feature-title.green {
        color: #10b981;
    }

    .feature-description {
        color: var(--light-text);
        line-height: 1.6;
        margin: 0;
    }

    /* 비용 섹션 */

    .pricing-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .pricing-subtitle {
        font-size: 1.25rem;
        color: var(--light-text);
        margin-top: 1rem;
        line-height: 1.6;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 비교 테이블 섹션 */
    .comparison-section {
        margin-bottom: 4rem;
    }

    .comparison-card {
        background: var(--background-color);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        border: 1px solid var(--border-light);
    }

    .comparison-header {
        background: rgba(26, 95, 74, 0.05);
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }

    .comparison-title {
        font-size: 1.5rem;
        color: #1a5f4a;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .comparison-content {
        padding: 0;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }

    .comparison-table th {
        background: rgba(26, 95, 74, 0.15);
        color: #1a5f4a;
        font-weight: 700;
        font-size: 1rem;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    .category-header {
        text-align: center;
        background: rgba(26, 95, 74, 0.2);
        color: #1a5f4a;
        font-weight: 700;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    .existing-header {
        background: rgba(108, 117, 125, 0.15);
        color: var(--text-color);
        font-weight: 600;
    }

    .dache-header {
        background: rgba(26, 95, 74, 0.2);
        color: #1a5f4a;
        font-weight: 700;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    .comparison-table td {
        color: var(--text-color);
        line-height: 1.5;
    }

    .category-cell {
        background: rgba(26, 95, 74, 0.08);
        font-weight: 700;
        text-align: center;
        color: #1a5f4a;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    .existing-cell {
        color: var(--text-color);
        font-weight: 500;
        background: rgba(108, 117, 125, 0.03);
    }

    .dache-cell {
        background: rgba(26, 95, 74, 0.08);
        color: #1a5f4a;
        font-weight: 600;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    .dache-cell strong {
        color: #1a5f4a;
        font-weight: 800;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .pricing-card {
        background: var(--background-color);
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: var(--card-padding);
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: var(--shadow);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-color);
    }

    .pricing-card.featured {
        border-color: var(--primary-color);
        box-shadow: 0 8px 20px rgba(166, 237, 205, 0.3);
        transform: scale(1.05);
    }


    /* 투명성 섹션 */
    .transparency-section {
        margin-bottom: 2rem;
    }

    .transparency-card {
        background: var(--background-color);
        border-radius: var(--border-radius);
        padding: 3rem 2rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        text-align: center;
    }

    .transparency-icon-wrapper {
        width: 64px;
        height: 64px;
        background: rgba(26, 95, 74, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        border: 2px solid rgba(26, 95, 74, 0.25);
        transition: all 0.3s ease;
    }

    .transparency-icon-wrapper:hover {
        background: rgba(26, 95, 74, 0.2);
        border-color: rgba(26, 95, 74, 0.4);
        transform: scale(1.05);
    }

    .transparency-icon-wrapper i {
        font-size: 1.5rem;
        color: #1a5f4a;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .transparency-title {
        font-size: 2rem;
        color: #1a5f4a;
        font-weight: 700;
        margin-bottom: 2rem;
        line-height: 1.3;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

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

    .transparency-description {
        font-size: 1.1rem;
        color: var(--light-text);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .transparency-highlight {
        background: rgba(26, 95, 74, 0.05);
        border-radius: var(--border-radius);
        padding: 1.5rem;
        border: 1px solid rgba(26, 95, 74, 0.2);
    }

    .transparency-highlight-text {
        color: #1a5f4a;
        font-style: italic;
        font-weight: 700;
        font-size: 1.1rem;
        margin: 0;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    .pricing-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
        color: #333333;
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(166, 237, 205, 0.4);
    }

    .pricing-header h3 {
        color: var(--text-color);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .price {
        margin-bottom: 2rem;
    }

    .price .amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        display: block;
    }

    .price .period {
        font-size: 1rem;
        color: var(--light-text);
    }

    .pricing-features ul {
        list-style: none;
        margin-bottom: 2rem;
        text-align: left;
    }

    .pricing-features li {
        padding: 0.5rem 0;
        color: var(--text-color);
        position: relative;
        padding-left: 1.5rem;
    }

    .pricing-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }

    .pricing-footer {
        margin-top: auto;
    }

    /* 비용 비교 섹션 */
    .pricing-comparison {
        margin: 3rem 0;
        padding: 2rem;
    }

    .pricing-comparison h4 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-size: 1.3rem;
        text-align: center;
    }

    .comparison-intro {
        text-align: center;
        font-size: 1.1rem;
        color: var(--text-color);
        margin-bottom: 2rem;
        font-weight: 500;
    }

    .comparison-table {
        margin: 2rem 0;
        overflow-x: auto;
    }

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        text-align: center;
        border: 1px solid var(--border-color);
    }

    .comparison-table th {
        background: var(--primary-color);
        color: #333333;
        font-weight: 600;
        font-size: 1rem;
    }

    .comparison-table td {
        color: var(--text-color);
        line-height: 1.5;
    }

    .comparison-table td:first-child {
        background: #f8f9fa;
        font-weight: 600;
        text-align: center;
    }

    .comparison-table strong {
        color: #1a5f4a;
        font-weight: 700;
    }

    .pricing-explanation {
        margin-top: 2rem;
    }

    .pricing-explanation h5 {
        color: var(--text-color);
        margin-bottom: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .pricing-explanation p {
        color: var(--light-text);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }


    .transparency-note {
        margin-top: 2rem;
        padding: 1.5rem;
        background: white;
        border-radius: var(--border-radius);
        border-left: 4px solid var(--primary-color);
    }

    .transparency-note h5 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .transparency-note p {
        margin-bottom: 0;
    }

    .transparency-note strong {
        color: #1a5f4a;
        font-weight: 600;
    }

    /* 반응형 히어로 섹션 */
    .hero-content {
        padding: 1rem 0;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        margin-top: 0.5rem;
    }
    
    /* 반응형 비용 섹션 */
    @media (max-width: 768px) {
        .pricing-cards {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .pricing-card.featured {
            transform: none;
        }

        .pricing-card {
            padding: 1.5rem;
        }

        .price .amount {
            font-size: 2rem;
        }

        .pricing-comparison {
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .comparison-table {
            margin: 1.5rem 0;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 0.75rem 0.5rem;
            font-size: 0.9rem;
        }

    }

/* 회사 소개 섹션 */
.about {
    padding: 5rem 0;
    background: var(--light-bg);
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.about-image {
    text-align: center;
}

.about-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
}


.form-group {
    margin-bottom: 1.5rem;
}

.other-input {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.other-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}



.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    color: var(--light-text);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-style: italic;
}

/* 푸터 */
.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

/* 소셜 링크 스타일 */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.social-icon {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* 네이버 아이콘은 원본 색상 유지 */
.social-link[href*="naver"] .social-icon {
    filter: none;
}

.social-link:hover .social-icon {
    filter: none;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu li {
        margin-bottom: 1.5rem;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        text-align: left;
    }
    
    .nav-menu::before {
        content: '✕';
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
        font-weight: bold;
    }

    .nav-menu.active {
        display: flex;
        right: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--grid-gap);
        max-width: 100%;
    }

    .service-card {
        padding: var(--card-padding-sm);
    }

    .service-title {
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }


    .quote-text {
        font-size: 1rem;
    }

    .quote-title {
        font-size: 1.1rem;
    }

    .chaumji-content {
        grid-template-columns: 1fr;
        gap: var(--grid-gap);
        text-align: center;
    }

    .chaumji-image {
        order: 1;
    }

    .chaumji-features {
        order: 2;
    }

    .chaumji-feature {
        padding: var(--card-padding-sm);
    }

    .service-highlight,
    .service-quote-highlight {
        padding: var(--card-padding-sm);
        width: 95%; /* 모바일에서는 더 넓게 */
        max-width: none; /* 모바일에서는 최대 너비 제한 해제 */
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .chaumji-header,
    .pricing-intro {
        margin-bottom: 2rem;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .comparison-section {
        margin-bottom: 3rem;
    }

    .transparency-title {
        font-size: 1.5rem;
    }

    .transparency-card {
        padding: 2rem 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

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

    .hero {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services,
    .about {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }

}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.about-content {
    animation: fadeInUp 0.6s ease-out;
}

/* 스크롤 효과 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 이용약관 페이지 스타일 */
.terms-page, .privacy-page {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

/* 환불정책 상세 정보 스타일 */
.refund-details {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.refund-details h4 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.refund-details p {
    margin: 8px 0;
    color: #6c757d;
    font-weight: 500;
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
}

.terms-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-header p {
    font-size: 1.2rem;
    color: #666;
}

.terms-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.version-selector {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.version-selector label {
    font-weight: 600;
    margin-right: 15px;
    color: #333;
}

.version-selector select {
    padding: 10px 20px;
    border: 2px solid #a6edcd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.version-content {
    display: none;
}

.version-content.active {
    display: block;
}

.version-content h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #a6edcd;
}

.version-content h2:first-child {
    margin-top: 0;
}

.version-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.version-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.version-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.terms-date {
    text-align: center;
    font-weight: 600;
    color: #a6edcd;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .terms-page {
        padding: 100px 20px 60px;
    }
    
    .terms-header h1 {
        font-size: 2.5rem;
    }
    
    .terms-content {
        padding: 25px;
        margin: 0 10px;
    }
    
    .version-content h2 {
        font-size: 1.3rem;
    }
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.version-selector {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.version-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.version-selector select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.version-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.terms-content {
    line-height: 1.8;
}

.version-content {
    display: none;
}

.version-content.active {
    display: block;
}

.version-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

    .version-content h3:first-child {
        margin-top: 0;
    }
    
    .version-content p {
        margin-bottom: 1rem;
        color: var(--text-color);
        text-align: justify;
    }
    
    .terms-date {
        margin-top: 2rem !important;
        padding: 1rem;
        background: var(--light-bg);
        border-radius: var(--border-radius);
        text-align: center;
        font-weight: 600;
        color: var(--primary-color);
        border-left: 4px solid var(--primary-color);
    }
    
    /* 환불정책 특별 스타일 */
    .refund-notice {
        margin-top: 2rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
        border-radius: var(--border-radius);
        border: 2px solid #ffc107;
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
    }
    
    .refund-notice h4 {
        color: #856404;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .refund-notice p {
        color: #856404;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .refund-notice p:last-child {
        margin-bottom: 0;
        font-weight: 600;
        color: var(--primary-color);
    }
    
    /* 환불정책 상세 내용 스타일 */
    .refund-details {
        background: rgba(26, 95, 74, 0.1);
        border-radius: var(--border-radius-sm);
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-left: 4px solid var(--primary-color);
    }
    
    .refund-details p {
        color: var(--text-color);
        font-size: 1rem;
        line-height: 1.6;
        margin: 0.5rem 0;
        font-weight: 500;
    }
    
    .refund-details p:first-child {
        margin-top: 0;
    }
    
    .refund-details p:last-child {
        margin-bottom: 0;
    }
    
    /* 환불정책 모달 전용 스타일 */
    #refundModal {
        z-index: 10001; /* 다른 모달보다 위에 표시 */
    }
    
    #refundModal .modal-content {
        max-width: 700px; /* 환불정책 모달 크기 조정 */
    }
    
    #refundModal .terms-content {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    #refundModal .terms-content p {
        margin-bottom: 1rem;
    }
    
    #refundModal .terms-content ul {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }
    
    #refundModal .terms-content li {
        margin-bottom: 0.5rem;
    }
    
    #refundModal .terms-content strong {
        color: #1a5f4a;
        font-weight: 600;
    }

/* 모달 애니메이션 */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 모달 */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .version-content h3 {
        font-size: 1.2rem;
    }
}

/* 누구를 만날 수 있는지 섹션 반응형 */
@media (max-width: 768px) {
    .who-to-meet {
        padding: var(--section-padding-sm) 0;
    }
    
    .member-feature {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .member-feature .feature-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    
    .member-feature .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .member-feature .feature-content p {
        font-size: 1rem;
    }
    
    .preparation-card {
        padding: 2rem 1.5rem;
    }
    
    .preparation-card h3 {
        font-size: 1.2rem; /* 1.5rem의 80% = 1.2rem */
    }
    
    .preparation-content p {
        font-size: 1rem;
    }
    
    .preparation-highlight p {
        font-size: 1rem;
    }
}

/* 미팅 진행 절차 섹션 반응형 */
@media (max-width: 768px) {
    .meeting-process {
        padding: var(--section-padding-sm) 0;
    }
    
    .process-steps {
        max-width: 100%;
        padding: 0 1rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .step-number {
        width: auto;
        min-width: 6rem;
        height: 2.5rem;
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .process-step {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .step-connector {
        top: 2.5rem;
        height: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
        text-align: center;
        height: auto;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    

    
    .summary-card {
        padding: 2rem 1.5rem; /* preparation-card와 동일한 패딩 */
        margin: 0 1rem;
    }
    
    .summary-card h3 {
        font-size: 1.2rem; /* 1.5rem의 80% = 1.2rem */
    }
    
    .summary-card p {
        font-size: 1rem;
    }
}

/* 소셜 미디어 링크 스타일 */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* 카카오톡 브랜드 컬러 */
.social-link[href*="kakao"] {
    background: #FEE500;
    color: #000000;
    border-color: #FEE500;
}

.social-link[href*="kakao"]:hover {
    background: #FFD700;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.4);
}

/* Threads 브랜드 컬러 */
.social-link[href*="threads"] {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.social-link[href*="threads"]:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Instagram 브랜드 컬러 */
.social-link[href*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: #dc2743;
}

.social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #f09433 100%);
    border-color: #cc2366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.social-link i {
    font-size: 1.2rem;
}

.social-icon {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
}
/* 모바일 반응형 소셜 링크 */
@media (max-width: 768px) {
    .social-links {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .social-link {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .social-icon {
        width: 1.3rem;
        height: 1.3rem;
    }
    
    /* 네이버 아이콘은 원본 색상 유지 */
    .social-link[href*="naver"] .social-icon {
        filter: none;
    }
    /* 모바일에서도 브랜드 컬러 유지 */
    .social-link[href*="kakao"] {
        background: #FEE500;
        color: #000000;
        border-color: #FEE500;
    }
    
    .social-link[href*="threads"] {
        background: #000000;
        color: #ffffff;
        border-color: #000000;
    }
    
    .social-link[href*="instagram"] {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: #ffffff;
        border-color: #dc2743;
    }
    

}

/* 개인정보처리방침 테이블 스타일 */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.privacy-table th,
.privacy-table td {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.privacy-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.privacy-table td {
    background: var(--background-color);
}

/* 모바일 반응형 테이블 */
@media (max-width: 768px) {
    .privacy-table {
        font-size: 0.875rem;
    }
    
    .privacy-table th,
    .privacy-table td {
        padding: 0.5rem 0.25rem;
    }
}

/* ===== Reviews Slider ===== */
.reviews {
    background: var(--light-bg);
    padding: var(--section-padding) 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.reviews-slider-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    background: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    box-sizing: border-box;
}

.review-quote {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.review-quote::before {
    content: '\201C';
    color: var(--primary-color);
    font-size: 4rem;
    line-height: 0;
    vertical-align: -1.5rem;
    margin-right: 0.25rem;
}

.review-author {
    margin-top: 1.5rem;
}

.author-info {
    color: var(--light-text);
    font-size: 0.9rem;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--accent-color);
}

.dot:hover {
    background: var(--secondary-color);
}

/* PC: 3개씩 보이는 슬라이더 */
@media (min-width: 769px) {
    .reviews-slider {
        gap: 1.5rem;
    }

    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: calc(33.333% - 1rem);
    }
}

/* 모바일: 슬라이더 */
@media (max-width: 768px) {
    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-quote {
        font-size: 1rem;
    }
}
