        /* 공통 테마 색상 */
        :root {
            --theme-color: #006400;
        }

        /* 전체 섹션 정리 */
        .music-intro101 {
            font-family: 'Noto Sans KR', sans-serif;
            color: #333;
        }

        /* 소개 영역 */
        .overview-section101 {
            max-width: 1600px;
            margin: 80px auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .overview-container101 {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }

        .overview-text101 {
            flex: 1 1 55%;
        }

        .overview-text101 h2 {
            font-size: 36px;
            color: var(--theme-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .overview-summary101 {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #444;
        }

        .overview-paragraphs101 p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .overview-video101 {
            flex: 1 1 40%;
            min-width: 300px;
        }

        .video-wrapper101 {
            position: relative;
            padding-top: 56.25%;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .video-wrapper101 iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* 재학생 이야기 */
        .alumni-section101 {
            background: #f4fdf5;
            padding: 60px 20px;
            border-radius: 16px;
        }

        .alumni-section101 h3 {
            text-align: center;
            font-size: 28px;
            color: var(--theme-color);
            margin-bottom: 40px;
        }

        .alumni-grid101 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }

        .alumni-card101 {
            background: #fff;
            border-left: 5px solid var(--theme-color);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 100, 0, 0.08);
        }

        .alumni-card101 blockquote {
            font-size: 15px;
            font-style: italic;
            line-height: 1.6;
            color: #444;
        }

        .alumni-name101 {
            margin-top: 16px;
            text-align: right;
            font-weight: bold;
            color: var(--theme-color);
        }


        /* CTA 영역 */
        .cta-section101 {
            background-color: #e5f4e7;
            padding: 60px 20px;
            text-align: center;
            margin-top: 80px;
        }

        .cta-section101 h2 {
            font-size: 28px;
            color: var(--theme-color);
            margin-bottom: 10px;
        }

        .cta-section101 p {
            font-size: 16px;
            margin-bottom: 30px;
        }

        .btn-group101 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .btn101 {
            padding: 12px 24px;
            font-size: 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.2s ease;
        }

        .btn-green101 {
            background-color: var(--theme-color);
            color: white;
            border: none;
        }

        .btn-green101:hover {
            background-color: #004d00;
        }

        .btn-outline101 {
            border: 2px solid var(--theme-color);
            color: var(--theme-color);
            background-color: transparent;
        }

        .btn-outline101:hover {
            background-color: var(--theme-color);
            color: white;
        }

        /* 반응형 */
        @media (max-width: 768px) {
            .overview-container101 {
                flex-direction: column;
            }

            .slider-item101 {
                width: 45%;
                padding-top: 50%;
            }

            .btn101 {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .slider-item101 {
                width: 100%;
                padding-top: 60%;
            }
        }