/* 기본 초기화: 브라우저 기본 여백 완전 제거 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f4f7f9;
}

/* ★ 타이틀 헤더: 상단 마진 없이 꽉 차게 설정 ★ */
.title-header {
    width: 100%;
    text-align: center;
    padding: 120px 20px 150px 20px; /* 아래쪽 여백(80px)을 조절해서 강아지 위쪽 공간을 확보하세요 */
    
    /* 배경 이미지 설정 */
    background-image: url('background.png');
    background-size: cover;          /* 박스를 꽉 채우되 */
    
    /* ★ 핵심 수정: 가로는 중앙, 세로는 아래쪽(bottom)을 피벗으로 고정 ★ */
    background-position: center bottom; 
    
    background-repeat: no-repeat;
    
    border: none; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 0; 
    margin-bottom: 50px;

    /* ★ 핵심 수정: 라운드(Round) 적용 ★ */
    border-radius: 20px; /* About Us 섹션보다 조금 더 둥글게 설정 */
}

.logo-text {
    font-size: 4rem; /* 사이즈를 조금 더 키웠습니다 */
    font-weight: 900;
    color: #fefefe;
    margin: 0;
    letter-spacing: -2px;
    text-shadow: 0 4px 4px rgba(80,80,80,1); /* 글씨 가독성 확보 */
}

.logo-text span { color: #ff4b2b; }

.tagline {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 15px;
    font-weight: 700;
    text-shadow: 0 1px 8px rgba(255,255,255,1);
}

.tagline2 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 15px;
    font-weight: 700;
    text-shadow: 0 1px 8px rgba(255,255,255,1);
}

/* 본문 컨테이너 */
.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

/* 섹션 카드 스타일 */
section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

h2 {
    font-size: 1.6rem;
    color: #1a2a6c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 24px;
    background: #ff4b2b;
    margin-right: 15px;
    border-radius: 3px;
}

/* 리스트 및 기타 스타일 */
ul { list-style: none; }
li { margin-bottom: 12px; display: flex; flex-wrap: wrap; }
.label { font-weight: 700; width: 100px; color: #34495e; }
.content { flex: 1; color: #5d6d7e; }
.content a { color: #3498db; text-decoration: none; }

.text-center { text-align: center; }
.btn-policy {
    display: inline-block;
    background: #1a2a6c;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-policy:hover {
    background: #ff4b2b;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* 모바일 대응 */
@media (max-width: 600px) {
    .title-header { padding: 60px 20px; }
    .logo-text { font-size: 2.8rem; }
    section { padding: 25px; }
}