/* 법적 고지 페이지 스타일 */

/* 헤더 고려 - 상단 여백 수정 */
.legal-banner {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    padding-top: 120px; /* 헤더 높이 + 여유 공간 */
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.legal-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/pattern-bg.png');
    opacity: 0.1;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.legal-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* 메인 섹션 스타일 */
.legal-disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.legal-disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
}

/* 혁신 하이라이트 영역 */
.innovation-highlight {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.innovation-highlight:hover {
    transform: translateY(-5px);
}

.innovation-icon {
    font-size: 3rem;
    margin-right: 30px;
    color: #3a7bd5;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.innovation-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
}

.innovation-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* 알림 카드 */
.alert-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.alert-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.alert-card:nth-child(1) {
    border-top: 4px solid #ff5252;
}

.alert-card:nth-child(2) {
    border-top: 4px solid #3a7bd5;
}

.alert-card:nth-child(3) {
    border-top: 4px solid #43cea2;
}

.alert-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.alert-card:nth-child(1) .alert-icon {
    color: #ff5252;
}

.alert-card:nth-child(2) .alert-icon {
    color: #3a7bd5;
}

.alert-card:nth-child(3) .alert-icon {
    color: #43cea2;
}

.alert-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.alert-card p {
    color: #666;
    line-height: 1.6;
}

/* 서비스 설명 영역 */
.service-explanation {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-explanation h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    z-index: 1;
}

.highlight-text:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 210, 255, 0.3);
    z-index: -1;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-details strong {
    color: #333;
    font-weight: 600;
}

.info-highlight {
    background-color: #f1f8ff;
    border-left: 4px solid #3a7bd5;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.info-highlight p {
    color: #333;
    font-weight: 500;
    margin: 0;
}

.service-details a {
    color: #3a7bd5;
    text-decoration: underline;
    font-weight: 500;
}

.service-details a:hover {
    color: #00d2ff;
}

/* 면책 사항 박스 */
.disclaimer-box {
    background: #fff8f8;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.disclaimer-box h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    display: inline-block;
}

.disclaimer-box h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff5252;
}

.disclaimer-box ul {
    padding-left: 20px;
}

.disclaimer-box li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    position: relative;
}

.disclaimer-box li:before {
    content: '•';
    color: #ff5252;
    font-weight: bold;
    display: inline-block;
    width: 1.2em;
    margin-left: -1.2em;
}

/* 행동 버튼 */
.legal-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.btn-back, .btn-understand {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-back {
    background-color: #f1f3f5;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-back i {
    margin-right: 10px;
}

.btn-back:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.btn-understand {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.3);
}

.btn-understand i {
    margin-left: 10px;
}

.btn-understand:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(58, 123, 213, 0.4);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .legal-banner {
        padding-top: 100px; /* 모바일에서 헤더 높이 고려 */
    }
    
    .legal-banner h1 {
        font-size: 2.2rem;
    }
    
    .alert-cards {
        grid-template-columns: 1fr;
    }
    
    .innovation-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .innovation-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .legal-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-back, .btn-understand {
        width: 100%;
        padding: 12px 20px;
    }
}

/* 특화 기능 박스 스타일 */
.specialization-box {
    background-color: #f1f8ff;
    border-left: 4px solid #3a7bd5;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.specialization-box h4 {
    color: #2c5282;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.specialization-box ul {
    margin: 0;
    padding-left: 20px;
}

.specialization-box li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.specialization-box li:last-child {
    margin-bottom: 0;
}

.specialization-box strong {
    color: #2c5282;
} 