/* 기본 바디 및 컨테이너 스타일 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* 제목 스타일 */
h1 {
    color: #FF00FF;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-top: 30px;
}

h3 {
    color: #555;
    margin-top: 20px;
}

/* 문단 및 버튼 스타일 */
p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-button {
    display: block;
    width: 90%;
    margin: 30px auto;
    padding: 15px;
    background-color: #FF00FF;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d400d4;
}

/* 헤더 및 내비게이션 스타일 */
.header {
    border-bottom: 1px solid #eee;
    background-color: #fff;
    padding: 10px 0;
}

/* 로고 영역 */
.logo-area {
    text-align: center;
    padding: 15px 0 10px;
}

/* 내비게이션 */
.category-nav {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.category-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.category-nav li {
    padding: 8px 10px;
    text-align: center;
}

.category-nav a {
    text-decoration: none;
    color: #333;
    font-size: 1em;
    font-weight: 700;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.category-nav a:hover {
    color: #FF00FF;
}

/* -------------------------------------------
* 푸터 (Footer) 스타일
* ------------------------------------------- */
.footer {
    /* 전체 푸터 컨테이너 */
    background-color: #333; 
    color: #fff; 
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px; 
}

/* 푸터 내 모든 문단 스타일 (주소, 영업시간, 고객센터 등) */
.footer p {
    margin: 5px 0;
    font-size: 0.9em;
    line-height: 1.5;
    display: inline-block; 
    padding: 0 7px; 
    white-space: nowrap; 
}

/* 푸터 내 링크 스타일 (전화번호, 텔레그램 등) */
.footer a {
    color: #FF00FF; 
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* 푸터 상단의 메인 타이틀 링크 스타일 (레플리카 사이트) */
.footer p:first-child a {
    font-size: 1.2em;
    font-weight: 900;
    color: #FF00FF;
    display: inline-block;
    margin-bottom: 10px;
}

/* 푸터 내비게이션 영역 (회사소개, 이용약관 등 법적 고지) */
.footer-nav {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #555; 
    /* 메뉴를 한 줄에 강제 배치 */
    display: flex;
    justify-content: center;
    overflow-x: auto; 
}

/* 푸터 내비게이션 내부 p 태그 (p 태그의 기본 스타일을 재정의) */
.footer-nav p {
    /* 이 p 태그에 대한 모든 스타일을 초기화하고 통일 */
    display: inline-block; /* 한 줄에 배치되도록 */
    white-space: nowrap; /* 줄바꿈 방지 */
    margin: 0; 
    padding: 0; 
    font-size: 1em; /* 기본 폰트 크기로 설정 */
}

/* 푸터 내비게이션 링크 스타일 (회사소개, 이용약관, 개인정보처리방침, 고객상담센터) - 완벽 통일 */
.footer-nav p a {
    /* 모든 a 태그의 크기와 색상을 동일하게 강제 적용하여 충돌 방지 */
    display: inline-block; 
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    
    /* 여기서 모든 링크의 크기와 색상을 통일 (가장 확실하게!) */
    color: #aaa !important; /* 색상 오버라이드 */
    font-size: 0.85em !important; /* 글자 크기 오버라이드 */
    font-weight: 400 !important; /* 볼드체 제거 오버라이드 */
    text-decoration: none !important;
    
    padding: 0 8px; /* 링크 사이의 간격 */
}

.footer-nav p a:hover {
    color: #fff !important;
}

/* -------------------------------------------
* 반응형 디자인 (모바일 최적화)
* ------------------------------------------- */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .category-nav ul {
        justify-content: space-between;
    }

    .category-nav li {
        flex-basis: 45%;
        padding: 8px 5px;
    }
	
    /* 푸터 내비게이션 모바일 스타일 */
    .footer-nav {
        justify-content: space-between; 
    }
	
    .footer-nav p a {
        font-size: 0.7em !important; /* 모바일에서 글자 크기를 더 작게, 확실하게 통일 */
        padding: 0 4px; 
    }
}