/* youth 공통 */
.wrap_page {
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero 섹션 */
.hero_section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(0px) translateX(-5px); }
    75% { transform: translateY(10px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero_section .container {
    position: relative;
    z-index: 2;
}

.hero_section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero_section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.hero-btn.primary {
    background: rgba(255,255,255,0.9);
    color: #667eea;
}

.hero-btn.primary:hover {
    background: white;
    color: #5a6fd8;
}

/* 요약 카드 스타일 - 에너지바우처와 동일 */
.wrap_summary {
    background: white;
    margin: -40px auto 60px;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    z-index: 3;
}

.wrap_summary h2 {
    text-align: center;
    color: #000 !important;
    margin-bottom: 30px;
    font-size: 1.8rem !important;
    font-weight: 700;
}

.wrap_summary_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.wrap_summary_card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    border: 1px solid #e1f5fe;
}

.wrap_summary_card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.wrap_summary_card h3 {
    color: #667eea;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.wrap_summary_card p {
    color: #424242;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* 지원 대상 섹션 */
.eligibility_section {
    background: white;
    margin: -40px auto 60px;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    z-index: 3;
}

/* 섹션 공통 스타일 */
.section_title {
    text-align: center;
    font-size: 1.8rem !important;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000 !important;
}

/* 모든 h2 태그를 통일 */
.wrap_page h2 {
    font-size: 1.8rem !important;
    color: #000 !important;
    font-weight: 700;
}

.eligibility_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.eligibility-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.eligibility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-card li {
    padding: 8px 0;
    padding-left: 15px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.eligibility-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 지원 금액 섹션 */
.amount_section {
    background: white;
    margin: -40px auto 60px;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    z-index: 3;
}

.amount_table {
    max-width: 94%;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.amount_table table {
    width: 100%;
    border-collapse: collapse;
}

.amount_table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.amount_table td {
    padding: 15px 18px;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.95rem;
}

.amount_table tr:nth-child(even) {
    background: #f8f9fa;
}

.amount_table tr:hover {
    background: #e3f2fd;
}

.highlight-amount {
    color: #e74c3c;
    font-weight: 600;
}

/* 신청 방법 섹션 */
.application_section {
    background: white;
    margin: -40px auto 60px;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    z-index: 3;
}

.application_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.application_card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.application_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.application-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.application-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.application-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.application-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.application-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.application-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* 신청 절차 스타일
.process-info {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.process-step {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    min-width: 120px;
    flex: 1;
    max-width: 140px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #fff;
}

.step-content p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.3;
}

.process-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    margin: 0 5px;
    flex-shrink: 0;
}

/* 신청 시기 안내 */
.schedule-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

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

.schedule-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.schedule-item h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.schedule-item p {
    margin: 0;
    opacity: 0.9;
}

/* FAQ 섹션 - 기존 스타일 사용 */
.faq-section {
    background: white;
    margin: -40px auto 60px;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    z-index: 3;
}

/* 버튼 스타일 */
.action-btn {
    display: inline-block;
    width: fit-content;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.action-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.btn-center {
    text-align: center;
    margin: 30px 0;
}

.btn-group {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
	.wrap_summary h2{
		font-size: 1.5rem !important;
	}
    .wrap_summary_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

	.wrap_summary {
        margin: -20px 20px 40px;
        padding: 30px 20px;
    }
    
    
    .wrap_summary_card {
        padding: 15px;
    }
    
    .wrap_summary_card .icon {
        font-size: 1.5rem;
    }
    
    .wrap_summary_card h3 {
        font-size: 1.2rem;
    }
    
    .wrap_summary_card p {
        font-size: 0.9rem;
    }

}

@media (max-width: 768px) {
    .hero_section h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero_section p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section_title {
        font-size: 1.8rem;
    }
    
    
    
    .eligibility_grid {
        grid-template-columns: 1fr;
    }
    
    .application_grid {
        grid-template-columns: 1fr;
    }
    

}




