* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen reader only - 접근성 개선 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    font-family: arial, sans-serif;
    background-color: #202124;
    color: #e8eaed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* 광고 영역 - 데스크톱 */
.ad-left,
.ad-right {
    width: 160px;
    /* min-height: 600px;
    margin-top: 100px; */
    height: 100vh;
    display: none;
}

.ad-placeholder {
    background-color: #303134;
    border: 1px solid #5f6368;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #9aa0a6;
    font-size: 14px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 메인 컨텐츠 */
.main-content {
    flex: 1;
    max-width: 652px;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 30px;
}

/* 로고 */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -2px;
    color: #e8eaed;
    margin: 0;
    line-height: 76px;
}

.converter-text {
    display: block;
    font-size: 24px;
    color: #9aa0a6;
    margin-top: -10px;
    font-weight: 300;
}

/* 검색 컨테이너 */
.search-container {
    width: 100%;
    max-width: 584px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #303134;
    border: 1px solid #5f6368;
    border-radius: 24px;
    padding: 12px 16px;
    height: 46px;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.search-box:hover {
    background-color: #303134;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.search-box:focus-within {
    background-color: #303134;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.search-icon {
    width: 20px;
    height: 20px;
    fill: #9aa0a6;
    margin-right: 12px;
    flex-shrink: 0;
}

.url-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #e8eaed;
    font-size: 16px;
    font-family: arial, sans-serif;
    padding: 0;
}

.url-input::placeholder {
    color: #9aa0a6;
}

/* 포맷 선택 버튼 (인라인) */
.format-selector-inline {
    position: relative;
    flex-shrink: 0;
    margin-left: 8px;
}

.format-button-inline {
    background: transparent;
    border: 1px solid #5f6368;
    border-radius: 16px;
    padding: 6px 12px;
    color: #8ab4f8;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.format-button-inline:hover {
    background-color: #3c4043;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.format-button-inline.active .arrow {
    transform: rotate(180deg);
}

/* 포맷 드롭다운 */
.format-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #292a2d;
    border: 1px solid #5f6368;
    border-radius: 8px;
    min-width: 120px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.format-dropdown.show {
    display: block;
}

.format-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #e8eaed;
    font-size: 14px;
}

.format-option:hover {
    background-color: #3c4043;
}

.format-option.selected {
    background-color: #8ab4f8;
    color: #202124;
    font-weight: 500;
}

/* 버튼 그룹 */
.button-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.search-button {
    background-color: #303134;
    border: 1px solid #303134;
    border-radius: 4px;
    color: #e8eaed;
    font-family: arial, sans-serif;
    font-size: 14px;
    padding: 10px 24px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-button:hover:not(:disabled) {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #5f6368;
    background-color: #303134;
}

.search-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 저작권 안내 문구 */
.copyright-notice {
    text-align: center;
    color: #9aa0a6;
    font-size: 11px;
    line-height: 1.5;
    margin: 12px 0 0 0;
    padding: 0 20px;
    opacity: 0.8;
}

/* 상태 메시지 */
.status-message {
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    min-height: 20px;
    font-size: 14px;
}

.status-message.success {
    color: #81c995;
    background-color: rgba(129, 201, 149, 0.1);
}

.status-message.error {
    color: #f28b82;
    background-color: rgba(242, 139, 130, 0.1);
}

.status-message.loading {
    color: #8ab4f8;
    background-color: rgba(138, 180, 248, 0.1);
}

/* 모래시계 회전 애니메이션 */
@keyframes hourglass-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.status-message.loading .hourglass {
    display: inline-block;
    animation: hourglass-spin 2s linear infinite;
}

/* 모바일 하단 광고 */
.ad-mobile-bottom {
    display: none;
    margin-top: auto;
    padding: 20px;
    width: 100%;
}

.ad-mobile-bottom .ad-placeholder {
    min-height: 100px;
    max-height: 250px;
}

/* 스크롤바 스타일링 */
.format-dropdown::-webkit-scrollbar {
    width: 8px;
}

.format-dropdown::-webkit-scrollbar-track {
    background: #202124;
    border-radius: 10px;
}

.format-dropdown::-webkit-scrollbar-thumb {
    background: #5f6368;
    border-radius: 10px;
}

.format-dropdown::-webkit-scrollbar-thumb:hover {
    background: #7a7d82;
}

/* 데스크톱 레이아웃 (최소 1200px) */
@media (min-width: 1200px) {
    .ad-left,
    .ad-right {
        display: block !important;
    }
    
    .ad-mobile-bottom {
        display: none !important;
    }
    
    body {
        gap: 20px;
        padding: 0 20px;
    }
}

/* 태블릿 */
@media (max-width: 1199px) and (min-width: 768px) {
    .ad-left,
    .ad-right {
        display: none !important;
    }
    
    body {
        align-items: stretch;
    }
    
    .main-content {
        padding: 0 20px;
    }
    
    /* 태블릿에서 하단 광고 표시 */
    .ad-mobile-bottom {
        display: flex !important;
        margin-top: auto;
        width: 100%;
        flex-direction: column;
    }
    
    .container {
        padding-top: 80px;
    }
    
    .logo h1 {
        font-size: 56px;
        line-height: 68px;
    }
    
    .converter-text {
        font-size: 20px;
    }
}

/* 모바일 */
@media (max-width: 767px) {
    .ad-left,
    .ad-right {
        display: none !important;
    }
    
    body {
        align-items: stretch;
    }
    
    .main-content {
        padding: 0 16px;
    }
    
    .container {
        padding-top: 60px;
        padding-bottom: 20px;
    }
    
    .logo h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    .converter-text {
        font-size: 18px;
        margin-top: -5px;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-box {
        padding: 10px 12px;
        height: auto;
        flex-wrap: wrap;
    }
    
    .url-input {
        font-size: 14px;
        min-width: 0;
    }
    
    .format-selector-inline {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }
    
    .format-button-inline {
        width: 100%;
        justify-content: center;
    }
    
    .format-dropdown {
        right: auto;
        left: 0;
        width: 100%;
    }
    
    .button-group {
        margin-top: 16px;
    }
    
    .search-button {
        width: 100%;
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* 모바일에서 하단 광고 표시 */
    .ad-mobile-bottom {
        display: flex !important;
        margin-top: auto;
        width: 100%;
        flex-direction: column;
    }
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 40px;
        line-height: 48px;
    }
    
    .converter-text {
        font-size: 16px;
    }
    
    .search-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

/* 팝업 모달 */
.modal-overlay {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.modal-overlay.show {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #303134;
    border: 1px solid #5f6368;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 정사각형 광고 배너 */
.ad-banner-square {
    width: 300px;
    height: 300px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ad-banner-square:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(138, 180, 248, 0.5);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

/* Click! 스티커 */
.click-sticker {
    position: absolute;
    top: -10px;
    right: -10px;
    width: auto;
    height: 60px;
    z-index: 10;
    animation: pulse 0.6s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.5));
    transform: rotate(45deg);
    transform-origin: center center;
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-45deg) scale(1);
        filter: drop-shadow(0px 0px 8px white);
    }
    50% {
        transform: rotate(-45deg) scale(1.1);
        filter: drop-shadow(0px 0px 8px white);
    }
}

.ad-banner-placeholder {
    width: 100%;
    height: 100%;
    background-color: #202124;
    border: 2px solid #5f6368;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0a6;
    font-size: 18px;
    text-align: center;
}

/* 다운로드 버튼 */
.info-text {
    color: #e8eaed;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: 15px 20px;
    line-height: 1.6;
    background-color: rgba(138, 180, 248, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(138, 180, 248, 0.3);
    width: 100%;
    box-shadow: 0 2px 8px rgba(138, 180, 248, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.info-text:hover {
    background-color: rgba(138, 180, 248, 0.2);
    border-color: rgba(138, 180, 248, 0.5);
    box-shadow: 0 4px 12px rgba(138, 180, 248, 0.3);
    transform: translateY(-2px);
}

.info-text:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(138, 180, 248, 0.2);
}

/* 무료 사용 버튼 */
.free-use-button {
    background-color: #8ab4f8;
    border: none;
    border-radius: 8px;
    color: #202124;
    font-family: arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.free-use-button:hover {
    background-color: #9ec4ff;
    box-shadow: 0 2px 8px rgba(138, 180, 248, 0.3);
}

.free-use-button:active {
    background-color: #7ba3e8;
    box-shadow: 0 1px 4px rgba(138, 180, 248, 0.2);
}

/* 모바일 반응형 */
@media (max-width: 767px) {
    .modal-content {
        padding: 20px;
        gap: 16px;
    }
    
    .ad-banner-square {
        width: 250px;
        height: 250px;
    }
    
    .ad-banner-square:hover {
        transform: scale(1.05);
    }
    
    .click-sticker {
        height: 50px;
        top: -8px;
        right: -8px;
    }
    
    .ad-banner-placeholder {
        font-size: 16px;
    }
    
    .info-text {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .free-use-button {
        font-size: 14px;
        padding: 12px 24px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .ad-banner-square {
        width: 200px;
        height: 200px;
    }
    
    .ad-banner-square:hover {
        transform: scale(1.05);
    }
    
    .click-sticker {
        height: 45px;
        top: -6px;
        right: -6px;
    }
    
    .ad-banner-placeholder {
        font-size: 14px;
        padding: 10px;
    }
    
    .info-text {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .free-use-button {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* SEO 콘텐츠 섹션 스타일 - 화면에서는 숨기고 검색엔진만 읽을 수 있도록 */
.intro-section,
.features-section,
.howto-section,
.faq-section,
.platforms-section,
.languages-section,
.tips-section,
.legal-section {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 기능 섹션 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* 사용 방법 섹션 */
.howto-steps {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 0;
    list-style: none;
    counter-reset: step-counter;
}

.howto-steps li {
    counter-increment: step-counter;
    padding: 25px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1a73e8;
    position: relative;
    padding-left: 60px;
}

.howto-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    background: #1a73e8;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.howto-steps li strong {
    color: #1a73e8;
    font-size: 16px;
}

.howto-steps li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* FAQ 섹션 */
.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a73e8;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* 플랫폼 섹션 */
.platforms-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.platform-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-tag:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-2px);
}

/* 언어 섹션 */
.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.language-tag {
    background: #fff;
    border: 1px solid #dce3f5;
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 14px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-tag:hover {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
}

/* 팁 섹션 */
.tips-section {
    max-width: 1100px;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tip-card {
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #1a73e8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.tip-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.tip-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.tip-card code {
    background: #f1f3f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

/* 정책 섹션 */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.legal-link {
    padding: 10px 18px;
    border: 1px solid #d2e3fc;
    border-radius: 30px;
    color: #1a73e8;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-link:hover {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

/* 모바일 반응형 - SEO 섹션 */
@media (max-width: 767px) {
    .intro-section,
    .features-section,
    .howto-section,
    .faq-section,
    .platforms-section {
        margin: 40px auto 30px;
        padding: 0 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .howto-steps {
        margin-top: 20px;
    }

    .howto-steps li {
        padding: 20px;
        padding-left: 50px;
        margin-bottom: 15px;
    }

    .howto-steps li::before {
        left: 15px;
        top: 20px;
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .faq-list {
        margin-top: 30px;
    }

    .faq-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .platforms-list {
        margin-top: 20px;
        gap: 10px;
    }

    .platform-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .language-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }

    .language-tag {
        padding: 8px 14px;
        font-size: 13px;
    }

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

    .tip-card {
        padding: 20px;
    }

    .legal-links {
        gap: 10px;
    }

    .legal-link {
        font-size: 14px;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .section-description {
        font-size: 14px;
    }

    .feature-item {
        padding: 15px;
    }

    .howto-steps li {
        padding: 15px;
        padding-left: 45px;
    }

    .faq-item {
        padding: 15px;
    }

    .tips-section {
        margin: 30px auto 20px;
    }

    .tip-card h3 {
        font-size: 16px;
    }

    .tip-card p {
        font-size: 14px;
    }

    .legal-link {
        font-size: 13px;
    }
}

/* 콘텐츠 페이지 스타일 */
.content-page {
    padding-top: 80px;
    padding-bottom: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    background-color: #303134;
    border-radius: 8px;
    padding: 40px;
    margin-top: 30px;
    line-height: 1.8;
    color: #e8eaed;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e8eaed;
    border-bottom: 1px solid #5f6368;
    padding-bottom: 10px;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #e8eaed;
}

.content-section p {
    margin-bottom: 15px;
    color: #bdc1c6;
    font-size: 15px;
}

.content-section ul,
.content-section ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #bdc1c6;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.content-section strong {
    color: #e8eaed;
    font-weight: 500;
}

.content-section code {
    background-color: #202124;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #8ab4f8;
}

.back-link {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #5f6368;
    text-align: center;
}

.back-link .legal-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    transition: background-color 0.2s;
}

.back-link .legal-link:hover {
    background-color: #1557b0;
}

.faq-section-inline {
    margin-top: 20px;
}

.faq-section-inline h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #e8eaed;
}

.faq-section-inline p {
    margin-bottom: 15px;
    color: #bdc1c6;
}

/* 모바일 반응형 - 콘텐츠 페이지 */
@media (max-width: 768px) {
    .content-page {
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .content-section {
        padding: 25px 20px;
    }

    .content-section h2 {
        font-size: 20px;
    }

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

    .content-section p,
    .content-section li {
        font-size: 14px;
    }
}