
/* General Resets */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    background-color: #ffffff; 
    color: #333; 
    line-height: 1.5;
}
.btn-half-center {
    width: 50%;           /* 너비를 50%로 */
    display: block;       /* 중앙 정렬을 위해 블록 요소로 변경 */
    margin: 20px auto;    /* 위아래 여백 20px, 좌우 자동(중앙) */
    text-align: center;   /* 글자 중앙 정렬 */
    white-space: nowrap;  /* 글자가 길어질 경우 줄바꿈 방지 */
}
@media (max-width: 768px) {
    .btn-lg {
        font-size: 0.9rem; /* 모바일에서 글자 크기 살짝 축소 */
        padding: 10px 5px;  /* 안쪽 여백 조정 */
    }
}
/* Header Section */
.hero {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px 100px;
}

.hero h1 {
    color: #ffcc00;
    font-size: 2.2rem; /* Reduced size */
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem; /* Reduced size */
    opacity: 0.9;
}

/* Wrapper */
.wrapper {
    max-width: 1000px;
    margin: -50px auto 60px;
    padding: 0 20px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.time-badge {
    background-color: #ffcc00;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.sub-label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

h2 {
    font-size: 1.3rem; /* Reduced font size */
    margin-bottom: 15px;
    color: #000;
}

.price-container {
    background-color: #f7f7f7;
    padding: 15px;
    border-left: 4px solid #ffcc00; /* Subtle accent line */
    margin-bottom: 20px;
}

.amount {
    display: block;
    font-size: 1.4rem; /* Reduced font size */
    font-weight: 700;
}

.desc {
    font-size: 0.8rem;
    color: #666;
}

/* Features */
.features {
    list-style: none;
    font-size: 0.9rem;
}

.features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
}

/* --- General Policies 섹션 수정 --- */

/* 전체 박스 스타일 */
  /* 1. 전체 박스 스타일 (클래스명 동일) */
  .policies-section {
    background-color: #1a1a1a; /* 검정색 배경으로 변경 (참고 사이트 스타일) */
    border-radius: 20px;       /* 요청하신 둥근 모서리 */
    padding: 40px;
    max-width: 1000px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;              /* 테두리 제거로 더 깔끔하게 */
}

/* 제목 스타일 (노란색 배경, 하얀색 글씨) */
.policies-section h2 {
    display: inline-block;
    background-color: #FFCC00; /* 노란색 배경 */
    color: #ffffff;            /* 하얀색 글씨 */
    padding: 10px 25px;
    border-radius: 50px;       /* 완전 둥근 모양 */
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 30px;
    margin-top: 0;
    letter-spacing: 1px;
}

/* 정책 리스트 아이템 */
.policy-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

/* 아이콘 스타일 */
.policy-item .icon {
    font-size: 1.4rem;
    margin-right: 15px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* 텍스트 스타일 */
.policy-item p {
    margin: 0;
    color: #e0e0e0; /* 읽기 편한 연한 회색/흰색 */
    line-height: 1.7;
    font-size: 0.95rem;
}

/* 강조 텍스트 */
.policy-item strong {
    color: #ffffff; /* 핵심 문구는 완전 흰색 */
    font-weight: 700;
}

