 /* 공통 설정 */
 .ideology-section {
     max-width: 1200px;
     margin: 80px auto;
     padding: 0 20px;
     font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
     line-height: 1.7;
     color: #222;
 }

 .fade-in {
     opacity: 0;
     transform: translateY(50px);
     transition: all 1.2s ease-out;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* 섹션 제목 */
 .ideology-section h2 {
     font-size: 32px;
     color: #006400;
     margin-bottom: 10px;
     border-left: 6px solid #006400;
     padding-left: 15px;
 }

 .ideology-subtitle {
     font-size: 18px;
     color: #555;
     margin-bottom: 40px;
     font-style: italic;
 }

 /* 본문 내용 */
 .ideology-section h3 {
     font-size: 22px;
     color: #006400;
     margin-top: 40px;
     margin-bottom: 10px;
     border-bottom: 2px solid #00640033;
     padding-bottom: 6px;
 }

 .ideology-section p {
     font-size: 16px;
     color: #333;
     margin-bottom: 20px;
     line-height: 1.8;
 }

 /* 인재상 박스 */
 .ideology-values {
     background-color: #f7f7f7;
     padding: 30px 20px;
     border-radius: 8px;
     margin-top: 60px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
 }

 .ideology-values h3 {
     font-size: 20px;
     color: #006400;
     margin-bottom: 15px;
 }

 .ideology-values ul {
     padding-left: 20px;
     margin-bottom: 30px;
 }

 .ideology-values ul li {
     list-style: disc;
     font-size: 16px;
     margin-bottom: 10px;
 }