/* 모모케어 스타일 - 오렌지/복숭아 톤 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.header {
    background: linear-gradient(135deg, #FF8A65 0%, #FFB74D 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 4px 20px rgba(255, 138, 101, 0.3);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #FF6F00;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FFF3E0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2rem;
    color: #FF6F00;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #FFB74D;
    padding-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    color: #F57C00;
    margin: 20px 0 15px;
}

h4 {
    font-size: 1.3rem;
    color: #EF6C00;
    margin: 15px 0 10px;
}

.region-intro {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.region-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.region-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(255, 111, 0, 0.1);
    border: 2px solid #FFE0B2;
}

.stat-box h3 {
    font-size: 1.8rem;
    color: #FF6F00;
    margin-bottom: 10px;
}

.stat-box p {
    color: #666;
    font-size: 0.95rem;
}

.trust-badges {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.badge {
    background: white;
    color: #F57C00;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(255, 111, 0, 0.15);
    border: 2px solid #FFB74D;
}

.pricing {
    background: #FFFAF0;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.price-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid #FFE0B2;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.2);
    border-color: #FFB74D;
}

.price-card.featured {
    border-color: #FF8A65;
    background: linear-gradient(135deg, #FFF8E1 0%, white 100%);
}

.price-card.vip {
    border-color: #FF6F00;
    background: linear-gradient(135deg, #FFF3E0 0%, white 100%);
}

.price-card.premium {
    border-color: #F57C00;
    background: linear-gradient(135deg, #FFECB3 0%, white 100%);
}

.price-card h4 {
    font-size: 1.4rem;
    color: #FF6F00;
    margin-bottom: 15px;
    text-align: center;
}

.desc {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.price {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
    text-align: center;
}

.price strong {
    color: #FF6F00;
    font-size: 1.3rem;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #FFE0B2;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.why-momocare {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.reason-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(255, 111, 0, 0.1);
    border-left: 5px solid #FF8A65;
}

.reason-card h3 {
    color: #FF6F00;
    margin-bottom: 15px;
}

.reason-card p {
    color: #555;
    line-height: 1.7;
}

.massage-details {
    background: #FFFAF0;
}

.massage-type {
    background: white;
    padding: 30px;
    margin: 25px 0;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-left: 5px solid #FFB74D;
}

.massage-type h3 {
    color: #FF6F00;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.massage-intro {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 15px;
    background: #FFF8E1;
    border-radius: 10px;
}

.massage-type h4 {
    color: #F57C00;
    margin-top: 20px;
    margin-bottom: 15px;
}

.massage-type ul {
    list-style: none;
    padding-left: 0;
}

.massage-type ul li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #FFE0B2;
}

.massage-type ul li strong {
    color: #FF6F00;
}

.process {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #FF8A65;
}

.step h3 {
    color: #FF6F00;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step ul {
    list-style: none;
    margin: 15px 0;
}

.step ul li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.tip {
    background: #FFF8E1;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #F57C00;
    border-left: 4px solid #FFB74D;
}

.reviews {
    background: #FFFAF0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #FFE0B2;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header h4 {
    color: #FF6F00;
    font-size: 1.2rem;
}

.stars {
    color: #FFB300;
    font-size: 1.1rem;
}

.review-course {
    color: #F57C00;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
    text-align: right;
}

.faq {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-left: 5px solid #FF8A65;
}

.faq-item h4 {
    color: #FF6F00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.faq-item strong {
    color: #F57C00;
}

.footer {
    background: linear-gradient(135deg, #FF8A65 0%, #FFB74D 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 0;
}

.footer h2 {
    color: white;
    border-bottom: none;
    margin-bottom: 20px;
}

.footer p {
    margin: 15px 0;
    opacity: 0.95;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .price-grid,
    .reason-grid,
    .process-steps,
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 30px 15px;
        margin: 20px 10px;
    }
}
