:root {
	--primary-color: #3b82f6;
	--primary-dark: #2563eb;
	--secondary-color: #fb923c;
	--accent-color: #10b981;
	--text-dark: #111827;
	--text-gray: #6b7280;
	--bg-light: #fafafa;
	--bg-gray: #f3f4f6;
	--white: #ffffff;
	--border-color: #e5e7eb;
}

.cta-button {
	background: var(--primary-color);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	display: inline-block;
	box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* 히어로 섹션 */
.hero {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	padding: 6rem 5%;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	transform: rotate(45deg);
	animation: float 20s linear infinite;
}

@keyframes float {
	0% { transform: rotate(45deg) translate(0, 0); }
	100% { transform: rotate(45deg) translate(50px, 50px); }
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	animation: fadeInUp 0.8s ease;
	font-weight: 700;
}

.hero .subtitle {
	font-size: 1.3rem;
	color: var(--text-gray);
	margin-bottom: 2rem;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 3rem 0;
	animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
	text-align: center;
	background: rgba(255,255,255,0.9);
	padding: 2.5rem 2rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s;
	border: 1px solid var(--border-color);
}

.stat:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-number {
	font-size: 2.5rem;
	line-height: 160%;
	font-weight: bold;
	color: var(--primary-color);
	display: block;
}

.stat-label {
	color: var(--text-gray);
	font-size: 0.9rem;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 학원장 인사말 섹션 */
.letter-section {
	padding: 5rem 5%;
	background: var(--white);
	position: relative;
}

.letter-container {
	max-width: 800px;
	margin: 0 auto;
	background: var(--bg-light);
	padding: 3rem;
	border-radius: 20px;
	position: relative;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s;
	border: 1px solid var(--border-color);
}

.letter-container:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.letter-container::before {
	content: '"';
	position: absolute;
	top: 30px;
	left: 30px;
	font-size: 5rem;
	color: var(--primary-color);
	opacity: 0.2;
}

.letter-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--text-dark);
	text-align: center;
}

.letter-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-dark);
}

.letter-content p {
	margin-bottom: 1.5rem;
}

.signature {
	text-align: right;
	margin-top: 2rem;
	font-style: italic;
	color: var(--text-gray);
}

/* 대표강사 프로필 섹션 */
.profile-section {
	padding: 5rem 5%;
	background: linear-gradient(to right, var(--bg-gray), var(--white));
}

.profile-container {
	max-width: 1000px;
	margin: 0 auto;
}

.profile-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0rem;
	align-items: start;
	margin: 3rem 0 4rem;
}

.profile-item {
	text-align: center;
}

.profile-item:last-child {
	text-align: left;
}

.profile-item h4 {
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.profile-item.center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.profile-placeholder {
	width: 270px;
	/*height: 250px;*/
	background: var(--bg-light);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-gray);
	/*border: 2px dashed var(--border-color);*/
	margin: 42px auto 0;
	overflow: hidden;
}

.patent-placeholder {
	width: 100%;
	max-width: 230px;
	/*height: 250px;*/
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-gray);
	border: 2px solid var(--primary-color);
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	margin: 0 auto;
}

/*
.patent-placeholder::before {
	content: '🏆';
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 1.5rem;
	opacity: 0.3;
}
*/

.patent-placeholder:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

.profile-highlights {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 350px;
	margin: 0 auto;
}

.highlight-item {
	display: flex;
	gap: 0rem;
	align-items: start;
}

.highlight-icon {
	font-size: 1.3rem;
	background: var(--bg-light);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.highlight-txt {
	padding: 4px 0 0 0;
}

.highlight-item ul {
	list-style: none;
	padding: 0;
	margin-top: 0.3rem;
}

.highlight-item li {
	padding: 0.15rem 0;
	color: var(--text-gray);
	font-size: 0.9rem;
	line-height: 1.2;
}

.highlight-item strong {
	display: block;
	margin-bottom: 0.3rem;
	font-size: 1.1rem;
}

.profile-message {
	background: var(--primary-color);
	color: var(--white);
	padding: 1.5rem 2rem 1.5rem;
	border-radius: 10px;
	font-style: italic;
	text-align: center;
	max-width: 800px;
	margin: 2rem auto 0;
	box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
	font-size: 1rem;
	line-height: 1.7;
	white-space: normal;
	word-break: keep-all;
}

@media (min-width: 1025px) {
	.profile-item:last-child {
		text-align: left;
		padding: 36px 0 0 0;
	}

	.profile-highlights {
		margin: 0;
	}
}

@media (max-width: 1024px) {
	.profile-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.profile-item:last-child {
		text-align: center;
		padding: 0;
	}

	.patent-placeholder {
		max-width: 220px;
	}
}

@media (max-width: 768px) {
	.profile-placeholder {
		width: 180px;
		/*height: 220px;*/
		margin: 0 auto;
	}

	.patent-placeholder {
		/*height: 200px;*/
	}
}

/* 차별화 포인트 섹션 */
.features-section {
	padding: 5rem 5%;
	background: linear-gradient(to bottom, var(--bg-light), var(--white));
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--text-dark);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border-color);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	transform: translateX(-100%);
	transition: transform 0.5s;
}

.feature-card:hover::before {
	transform: translateX(0);
}

.feature-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
	transform: translate(20px, 20px);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
	border-color: var(--primary-color);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--bg-light), var(--bg-gray));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	transition: all 0.3s;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
	background: var(--secondary-color);
	color: var(--white);
}

.feature-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.feature-description {
	color: var(--text-gray);
	line-height: 1.6;
}

/* 첨삭 사진 섹션 */
.correction-showcase {
	max-width: 1200px;
	margin: 6rem auto 0;
	text-align: center;
	padding: 0 1rem;
}

.correction-showcase h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.correction-showcase h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-color);
}

.correction-images {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.correction-image-placeholder {
	/*aspect-ratio: 1/1;*/
	min-height: 120px;
	background: var(--bg-light);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-gray);
	border: 2px dashed var(--border-color);
	transition: all 0.3s;
	overflow: hidden;
	position: relative;
	padding: 0.5rem;
}

.correction-image-placeholder p {
	font-size: 1rem;
	margin-top: 0.3rem;
	/*margin-bottom: 0.3rem;*/
}

.correction-image-placeholder small {
	font-size: 0.875rem;
}

.correction-image-placeholder::before {
	content: '📝';
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 1rem;
	opacity: 0.2;
}

.correction-image-placeholder:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	border-color: var(--primary-color);
}

.correction-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-gray);
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.correction-images {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.8rem;
	}

	.correction-showcase h3 {
		font-size: 1.5rem;
	}

	.correction-description {
		font-size: 1rem;
		padding: 0 1rem;
	}

	.correction-image-placeholder p {
		font-size: 0.85rem;
	}

	.correction-image-placeholder small {
		font-size: 0.7rem;
	}
}

@media (max-width: 480px) {
	.correction-images {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}

	.correction-image-placeholder {
		font-size: 0.8rem;
	}

	.correction-image-placeholder p strong {
		font-size: 0.75rem;
	}

	.correction-image-placeholder small {
		font-size: 0.65rem;
	}
}

/* 실적 섹션 */
.results-section {
	padding: 5rem 5%;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: var(--white);
	text-align: center;
}

.results-section .section-title {
	color: var(--white);
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 3rem auto;
}

.result-card {
	background: rgba(255,255,255,0.1);
	padding: 2rem;
	border-radius: 10px;
	backdrop-filter: blur(10px);
	transition: all 0.3s;
	border: 1px solid rgba(255,255,255,0.2);
}

.result-card:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.result-number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--secondary-color);
	display: block;
	margin-bottom: 0.5rem;
	transition: all 0.3s;
}

.result-card:hover .result-number {
	transform: scale(1.1);
}

/* 학원 시설 갤러리 */
.gallery-section {
	padding: 7rem 5% 5rem;
	background: var(--white);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	max-width: 1200px;
	margin: 3rem auto;
}

.gallery-item {
	position: relative;
	/*border-radius: 10px;*/
	overflow: hidden;
	transition: all 0.3s;
}

.gallery-item.large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-placeholder {
	width: 100%;
	/*height: 250px;*/
	background: var(--bg-light);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-gray);
	/*border: 2px dashed var(--border-color);*/
	border-radius: 10px;
	overflow: hidden;
}

.gallery-item.large .gallery-placeholder {
	height: 100%;
	min-height: 510px;
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item.large {
		grid-column: span 1;
		grid-row: span 1;
	}

	.gallery-item.large .gallery-placeholder {
		min-height: 250px;
	}
}

/* 프로그램 섹션 */
.programs-section {
	padding: 5rem 5%;
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
	position: relative;
	overflow: hidden;
}

.programs-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
	background-size: 30px 30px;
	animation: float 30s linear infinite;
}

.program-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.tab-button {
	padding: 1rem 2.5rem;
	border: none;
	background: var(--white);
	color: var(--text-gray);
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 600;
	font-size: 1.1rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	position: relative;
	overflow: hidden;
}

.tab-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
	transition: left 0.5s;
}

.tab-button:hover::before {
	left: 100%;
}

.tab-button.active {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tab-button:hover:not(.active) {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.program-content {
	max-width: 800px;
	margin: 0 auto;
	display: none;
	position: relative;
	z-index: 1;
}

.program-content.active {
	display: block;
	animation: slideIn 0.5s ease;
}

@keyframes slideIn {
	from { 
		opacity: 0;
		transform: translateY(20px);
	}
	to { 
		opacity: 1;
		transform: translateY(0);
	}
}

.program-card {
	background: var(--white);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	position: relative;
	overflow: hidden;
}

.program-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.program-card h3 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-dark);
	font-size: 1.5rem;
}

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

.program-card li {
	padding: 1rem 0 1rem 2.5rem;
	position: relative;
	line-height: 1.8;
	transition: all 0.3s;
}

.program-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
	font-size: 1.2rem;
}

.program-card li:hover {
	padding-left: 3rem;
	color: var(--primary-color);
}

/* 학부모 및 학생 후기 */
.testimonials-section {
	padding: 5rem 5%;
	background: var(--bg-light);
}

.testimonials-section .section-title {
	margin-bottom: 3rem;
}

.testimonials-slider {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

@media (max-width: 1200px) {
	.testimonials-slider {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item.large {
		grid-column: span 2;
		grid-row: span 1;
	}

	.gallery-item.large .gallery-placeholder {
		/*min-height: 350px;*/
	}

	.correction-images {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.testimonials-slider {
		grid-template-columns: 1fr;
	}
}

.testimonial-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	position: relative;
	transition: all 0.3s;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 15px;
	left: 20px;
	font-size: 3rem;
	color: var(--primary-color);
	opacity: 0.15;
}

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

.testimonial-content {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.testimonial-author strong {
	font-size: 0.95rem;
}

.testimonial-author small {
	font-size: 0.85rem;
}

.author-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--white);
	font-size: 0.9rem;
}

/* CTA 섹션 */
.cta-section {
	padding: 5rem 5%;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: var(--white);
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-button-white {
	background: var(--white);
	color: var(--primary-color);
	padding: 1rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2rem;
	display: inline-block;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	border: none;
	cursor: pointer;
}

.cta-button-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-kakao {
	background: var(--secondary-color) !important;
	color: white !important;
}

.cta-kakao:hover {
	background: #ea580c !important;
}

/* 푸터 */
footer {
	padding: 3rem 5%;
	background: var(--text-dark);
	color: var(--white);
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-info {
	line-height: 1.8;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	body {
		line-height: 1.7;
	}

	.hero {
		padding: 3rem 5%;
	}

	nav {
		padding: 0.8rem 5%;
	}

	.hero h1 {
		font-size: 1.8rem;
		line-height: 1.3;
	}

	.hero .subtitle {
		font-size: 1.1rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.stat {
		padding: 1rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.main-link {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
	}

	.section-title {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}

	.letter-container {
		padding: 1.5rem;
	}

	.letter-title {
		font-size: 1.5rem;
	}

	.letter-content {
		font-size: 1rem;
	}

	.features-grid,
	.results-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.feature-card {
		padding: 1.5rem;
	}

	.cta-button {
		font-size: 1rem;
		padding: 0.75rem 1.5rem;
		min-height: 44px;
	}

	.program-card {
		padding: 1.5rem;
	}

	.program-card h3 {
		font-size: 1.3rem;
	}

	.program-card li {
		font-size: 0.95rem;
		padding: 0.8rem 0 0.8rem 2rem;
	}

	.testimonial-card {
		padding: 1.5rem;
	}

	.testimonial-content {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.testimonial-card::before {
		font-size: 2rem;
		top: 10px;
		left: 15px;
	}

	.profile-info h3 {
		font-size: 1.5rem;
	}

	.highlight-item li {
		font-size: 0.9rem;
	}

	.profile-message {
		font-size: 0.95rem;
		padding: 1.2rem;
	}

	.cta-content h2 {
		font-size: 1.8rem;
		line-height: 1.3;
	}

	.cta-content p {
		font-size: 1rem;
	}

	.cta-button-white {
		font-size: 1rem;
		padding: 0.8rem 2rem;
	}

	footer {
		font-size: 0.9rem;
	}

	/* 섹션 패딩 조정 */
	.letter-section,
	.profile-section,
	.features-section,
	.results-section,
	.gallery-section,
	.programs-section,
	.testimonials-section,
	.cta-section {
		padding: 3rem 5%;
	}

	/* CTA 버튼 세로 정렬 */
	.cta-content > div {
		flex-direction: column;
		gap: 0.8rem !important;
	}

	.cta-button-white {
		width: 100%;
		text-align: center;
	}

	/* 프로그램 탭 버튼 크기 조정 */
	.tab-button {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}

	/* 프로필 섹션 모바일 최적화 */
	.highlight-item {
		font-size: 0.85rem;
	}

	.highlight-icon {
		width: 30px;
		height: 30px;
		font-size: 1.1rem;
	}

	.profile-item h4 {
		font-size: 1rem;
	}

	/* 모바일에서 프로필 아이템 중앙 정렬 */
	.profile-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.profile-highlights {
		max-width: 90%;
		padding: 0;
		margin: 0 auto;
	}

	.profile-message {
		font-size: 0.95rem;
		line-height: 1.8;
		padding: 1.5rem 1rem;
		word-break: keep-all;
		word-wrap: break-word;
		max-width: 95%;
		margin: 2rem auto 0;
	}

	/* 로고 크기 조정 */
	.logo img {
		height: 35px;
	}
}



	.main_i { }
	.main_i .left { font-size: 26px; color: #000000; font-weight: 200; line-height: 160%; }
	.main_i .right { font-size: 12px; color: #909090; line-height: 18px; text-align: right; }

@media (max-width: 640px) {
	.main_i { }
	.main_i .left { font-size: 16px; padding-left: 5%; padding-right: 5%; }
	.main_i .right { padding-right: 5%; }
}

	.main_j { padding: 0 0 100px 0; }
	.main_j > ul > li { width: auto; }
	.main_j > ul > li .title { font-size: 16px; font-weight: bold; color: #000000; line-height: 42px; padding: 0 0 30px 0; }
	.main_j > ul > li .title img { margin-right: 20px; }
	.main_j > ul > li .list { border-right: 2px solid #f9f9f9; }
	.main_j > ul > li .list ul { float: left; padding: 0 50px 0 0; }
	.main_j > ul > li .list ul li { font-size: 12px; color: #000000; line-height: 20px; }
	.main_j > ul > li .list:after { clear: both; display: block; content:''; }

@media (max-width: 640px) {
	.main_j { padding: 0 0 50px 0; }
	.main_j > ul > li { }
	.main_j > ul > li .title { font-size: 14px; line-height: 42px; padding: 0 0 15px 0; }
	.main_j > ul > li .title img { margin-right: 10px; }
	.main_j > ul > li .list ul { padding: 0 25px 0 0; }
	.main_j > ul > li .list ul li { line-height: 160%; }
}