* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* 스크롤 방지 (내용이 길어지면 auto로 변경) */
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box {
    background: #fff;
    width: 100%;
    max-width: 600px;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 상단 장식 바 */
.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #da8c04, #f59e0b);
}

.logo-area {
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.message-area h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
    word-break: keep-all;
}

.highlight {
    color: #da8c04;
}

.sub-text {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
    word-break: keep-all;
}

.divider {
    height: 1px;
    background: #e5e7eb;
    width: 100px;
    margin: 0 auto 30px;
}

.description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    word-break: keep-all;
}

.info-area p {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #da8c04;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(218, 140, 4, 0.2);
}

.contact-btn:hover {
    background-color: #b47303;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(218, 140, 4, 0.3);
}

.mobile-break {
    display: none;
}

/* 반응형 (태블릿 및 모바일) */
@media (max-width: 768px) {
    .content-box {
        padding: 40px 20px;
    }

    .message-area h2 {
        font-size: 1.8rem;
    }

    .sub-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        align-items: flex-start;
        /* 모바일에서 세로 내용이 길어질 경우 상단 정렬 */
        overflow-y: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .content-box {
        padding: 30px 20px;
        box-shadow: none;
        /* 모바일에서는 그림자 제거하여 깔끔하게 */
        background: transparent;
    }

    .content-box::before {
        display: none;
    }

    .logo {
        max-width: 160px;
    }

    .message-area h2 {
        font-size: 1.6rem;
    }

    .mobile-break {
        display: block;
        /* 모바일에서 줄바꿈 */
    }

    .sub-text {
        font-size: 1rem;
    }

    .description {
        font-size: 0.9rem;
    }
}