/* style.css */
body {
    background-color: #f8f9fa;
    font-family: 'Noto Sans KR', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
}
/* 모바일 전용 컨테이너 (390px 중앙 정렬) */
.mobile-container {
    width: 100%;
    max-width: 390px; /* config.php의 MAX_WIDTH 상수값 적용 */
    background-color: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 20px; /* 모든 페이지 기본 여백 20px */
    display: flex;
    flex-direction: column;
}
/* 헤더 스타일 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.logo img {
    height: 24px;
    width: auto;
}
.contact-btns .btn {
    border-radius: 8px;
    font-size: 14px;
    padding: 5px 12px;
    font-weight: 500;
}
.btn-kakao { border: 1px solid #dee2e6; color: #3E82FF; background-color: white; }
.btn-call { border: 1px solid #dee2e6; color: #3E82FF; background-color: white; }

/* 공통 텍스트 스타일 */
.text-blue { color: #5377FF; }