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

/* 애니메이션 키프레임 */
@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 애니메이션 클래스 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* 포커스 표시 개선 */
*:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden; /* 가로 스크롤 방지 */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 네비게이션 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* 히어로 섹션 */
.hero {
    position: relative;
    padding: 84px 0 56px;
    background: #000;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* 히어로 배경 이미지 */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/히어로2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* 오버레이 제거됨 - 배경 이미지 100% 표시 */

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.highlight {
    color: #fbbf24;
    display: block;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #374151;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.cta-button {
    background: #fbbf24;
    color: #1f2937;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

/* 통계 섹션 */
.stats-section {
    padding: 80px 0;
    background: #fda2a8;
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* 서비스 섹션 */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.success-cases {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.case-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.case-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.case-result {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    display: block;
    margin-bottom: 20px;
}

.case-image-placeholder {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 30px 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.case-image-placeholder:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.image-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.6;
}

.case-image-placeholder p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.case-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.case-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* 서비스 상세 */
.service-details {
    padding: 100px 0;
    background: white;
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 15px 30px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.tab-button.active,
.tab-button:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.tab-content {
    display: none;
}

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

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.service-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #6b7280;
    line-height: 1.6;
}

.service-text ul {
    list-style: none;
}

.service-text li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #374151;
    line-height: 1.6;
}

.mock-phone {
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mock-screen {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    min-height: 200px;
}

.naver-review-demo {
    text-align: center;
}

.review-header {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.review-receipt {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 500;
}

.autocomplete-demo .search-box {
    border: 2px solid #e5e7eb;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #1f2937;
}

.autocomplete-list {
    text-align: left;
}

.autocomplete-item {
    padding: 10px;
    color: #6b7280;
    font-size: 0.9rem;
    border-bottom: 1px solid #f3f4f6;
}

.google-review-demo {
    text-align: left;
}

.google-header {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.google-rating {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 15px;
}

.google-review-text {
    color: #374151;
    margin-bottom: 10px;
    line-height: 1.5;
}

.google-user {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* 프로세스 섹션 */
.process {
    padding: 100px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: #2563eb;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 10px;
}

.process-step p:first-of-type {
    font-weight: 600;
    color: #2563eb;
}

/* 문의 섹션 */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    resize: vertical;
}

.form-group {
    margin-bottom: 30px;
}

.form-group > label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #1d4ed8;
}

/* 푸터 */
.footer {
    background: #1f2937;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

.footer-info p {
    color: #d1d5db;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: #fbbf24;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* 모달 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 1.5rem;
}

.modal-content p {
    margin-bottom: 30px;
    color: #6b7280;
}

.modal-button {
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.modal-button:hover {
    background: #1d4ed8;
}

/* 카카오톡 문의 섹션 */
.kakao-contact {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.kakao-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.kakao-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.kakao-id-button {
    background: #fbbf24;
    color: #1f2937;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.2);
    cursor: pointer;
    user-select: text;
}

.kakao-id-button:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateY(-10px);
        opacity: 0;
        animation: slideDown 0.3s ease forwards;
    }
    
    .nav-menu.active a {
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-menu.active a:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: 56vh;
        padding: 70px 0 42px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .highlight {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-background-image {
        /* 모바일에서 이미지 성능 최적화 */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-text {
        order: 2;
    }
    
    .service-image {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .success-cases {
        flex-direction: column;
        max-width: 100%;
    }
    
    .case-item {
        min-width: 100%;
    }
    
    .case-image-placeholder {
        padding: 20px 15px;
    }
    
    .case-photo {
        height: 180px;
    }
    
    .kakao-title {
        font-size: 2rem;
    }
    
    .kakao-id-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* 태블릿 사이즈 (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .highlight {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .success-cases {
        max-width: 90%;
    }
    
    .case-item {
        min-width: 250px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .highlight {
        font-size: 1.8rem;
    }
    
    .services,
    .service-details,
    .process,
    .contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .case-result {
        font-size: 1.5rem;
    }
    
    .image-icon {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 15px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-content {
        text-align: center;
    }
    
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

/* 스크롤 애니메이션 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* 초소형 모바일 (320px 이하) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 49vh;
        padding: 56px 0 28px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .highlight {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .case-result {
        font-size: 1.3rem;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .nav-logo-image {
        width: 32px;
        height: 32px;
    }
    
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 250px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .case-photo {
        height: 150px;
    }
    
    .kakao-title {
        font-size: 1.8rem;
    }
    
    .kakao-id-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* 특별한 강조 텍스트 스타일 */
.special-highlight {
    color: rgb(235, 165, 83);
    font-weight: 600;
}

/* 게시판 페이지 스타일 */
.board-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    overflow-y: auto;
}

.board-page-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 2px solid #2563eb;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-button {
    background: #6b7280;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background: #4b5563;
}

.board-page-header h2 {
    color: #2563eb;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.board-page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.guide-section h3 {
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.guide-section h4 {
    color: #2563eb;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.guide-section ul {
    list-style: none;
    padding-left: 0;
}

.guide-section li {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    line-height: 1.6;
    color: #374151;
    position: relative;
    padding-left: 35px;
}

.guide-section li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 15px;
    top: 12px;
}

.guide-section strong {
    color: #fbbf24;
    font-weight: 600;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .board-page-header {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .board-page-header h2 {
        font-size: 20px;
    }
    
    .board-page-content {
        padding: 20px 15px;
    }
    
    .guide-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .guide-section h3 {
        font-size: 20px;
    }
    
    .guide-section h4 {
        font-size: 16px;
    }
    
    .guide-section li {
        padding: 12px 15px;
        padding-left: 30px;
        font-size: 14px;
    }
    
    .guide-section li:before {
        left: 10px;
        top: 10px;
    }
}
