* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
	color: #333;
	line-height: 1.8;
	background: #FAFAFA;
}

/* Header Styles */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.4s ease;
}

header.scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 60px;
	text-decoration: none;
}

.logo img {
	height: 40px;
	width: auto;
	object-fit: contain;
	transition: filter 0.4s ease;
}

.logo-text {
	font-size: 1.6rem;
	font-weight: 700;
	color: #333;
	letter-spacing: 1.5px;
	transition: color 0.4s ease;
}

nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-menu > li {
	position: relative;
}

.nav-menu > li > a {
	text-decoration: none;
	color: #333;
	font-size: 1.05rem;
	font-weight: 500;
	transition: color 0.4s ease;
	position: relative;
	display: block;
	padding: 0.5rem 0;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
	color: #FF6B35;
}

.nav-menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #FF6B35;
	transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
	width: 100%;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	min-width: 200px;
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-top: 1rem;
	z-index: 100;
	padding: 0.5rem 0;
}

.nav-menu > li:hover .submenu {
	opacity: 1;
	visibility: visible;
	margin-top: 0.5rem;
}

.submenu li {
	list-style: none;
}

.submenu a {
	display: block;
	padding: 0.7rem 1.5rem;
	color: #555 !important;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.submenu a:hover {
	background: #FFF4E6;
	color: #FF6B35 !important;
	padding-left: 2rem;
}

.submenu a::after {
	display: none;
}

.submenu li {
	position: relative;
}

.submenu .nested-submenu {
	position: absolute;
	left: 100%;
	top: 0;
	background: white;
	min-width: 180px;
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-left: 0.5rem;
	padding: 0.5rem 0;
}

.submenu li:hover .nested-submenu {
	opacity: 1;
	visibility: visible;
	margin-left: 0;
}

.has-submenu > a::after {
	content: '▼';
	font-size: 0.7rem;
	margin-left: 0.3rem;
	opacity: 0.6;
}

.submenu .has-submenu > a::after {
	content: '▶';
	float: right;
	margin-left: 1rem;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav-actions a:not(.btn-donate) {
	text-decoration: none;
	color: #555;
	font-size: 0.95rem;
	transition: color 0.4s ease;
}

.nav-actions a:not(.btn-donate):hover {
	color: #FF6B35;
}

.nav-divider {
	color: #999;
	font-size: 0.9rem;
	opacity: 0.5;
}

.language-selector {
	position: relative;
	cursor: pointer;
}

.language-selector .current-lang {
	color: #555;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.4s ease;
}

.language-selector:hover .current-lang {
	color: #FF6B35;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.language-selector:hover .language-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-dropdown a {
	display: block;
	padding: 0.7rem 1.5rem;
	color: #333 !important;
	text-decoration: none;
	font-size: 0.9rem;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.language-dropdown a:hover {
	background: #f5f5f5;
	color: #FF6B35 !important;
}

.language-dropdown a.active {
	background: #FFF4E6;
	color: #FF6B35 !important;
	font-weight: 600;
}

.btn-donate {
	background: #FF6B35;
	color: white !important;
	padding: 0.7rem 1.8rem;
	border-radius: 25px;
	font-weight: 600;
	text-decoration: none !important;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
	transition: all 0.3s ease;
}

.btn-donate:hover {
	background: #F7931E;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 350px;
	height: 100vh;
	background: white;
	box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition: right 0.4s ease;
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-header {
	padding: 2rem 1.5rem;
	border-bottom: 1px solid #eee;
}

.mobile-menu-header .logo {
	height: 45px;
	justify-content: center;
	text-decoration: none;
}

.mobile-menu-header .logo img {
	height: 35px;
}

.mobile-menu-header .logo-text {
	color: #333;
	font-size: 1.1rem;
}

.mobile-menu-content {
	padding: 2rem 0;
}

.mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav-menu > li {
	border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu > li > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 1.5rem;
	color: #333;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.mobile-nav-menu > li > a:hover {
	background: #FFF4E6;
	color: #FF6B35;
}

.mobile-nav-menu .menu-arrow {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.mobile-nav-menu > li.expanded .menu-arrow {
	transform: rotate(180deg);
}

.mobile-submenu {
	max-height: 0;
	overflow: hidden;
	background: #f9f9f9;
	transition: max-height 0.3s ease;
}

.mobile-nav-menu > li.expanded .mobile-submenu {
	max-height: 500px;
}

.mobile-submenu li {
	border-bottom: 1px solid #eee;
}

.mobile-submenu li:last-child {
	border-bottom: none;
}

.mobile-submenu > li > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.9rem 1.5rem 0.9rem 2.5rem;
	color: #555;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.mobile-submenu > li > a:hover {
	background: #FFF4E6;
	color: #FF6B35;
}

.mobile-nested-submenu {
	max-height: 0;
	overflow: hidden;
	background: #f0f0f0;
	transition: max-height 0.3s ease;
}

.mobile-submenu > li.expanded .mobile-nested-submenu {
	max-height: 300px;
}

.mobile-nested-submenu li {
	border-bottom: 1px solid #e5e5e5;
}

.mobile-nested-submenu a {
	display: block;
	padding: 0.8rem 1.5rem 0.8rem 3.5rem;
	color: #666;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.mobile-nested-submenu a:hover {
	background: #FFF4E6;
	color: #FF6B35;
}

.mobile-nav-actions {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-nav-actions a {
	padding: 0.8rem 1.5rem;
	text-align: center;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.mobile-nav-actions a:not(.mobile-btn-donate) {
	background: #f5f5f5;
	color: #333;
}

.mobile-btn-donate {
	background: #FF6B35;
	color: white !important;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.mobile-language-selector {
	padding: 1.5rem;
	border-top: 1px solid #eee;
}

.mobile-language-selector .lang-label {
	display: block;
	font-size: 0.9rem;
	color: #999;
	margin-bottom: 0.5rem;
}

.mobile-language-options {
	display: flex;
	gap: 0.5rem;
}

.mobile-language-options a {
	flex: 1;
	padding: 0.6rem;
	text-align: center;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	color: #666;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.mobile-language-options a.active {
	border-color: #FF6B35;
	background: #FFF4E6;
	color: #FF6B35;
	font-weight: 600;
}

/* Page Hero */
.page-hero {
	margin-top: 80px;
	padding: 5rem 2rem;
	background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('img/main1.jpg') center/cover no-repeat;
	color: #333;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(247, 147, 30, 0.02));
	z-index: 0;
}

.page-hero > * {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.2rem;
	color: #FF6B35;
	letter-spacing: -1px;
}

.page-hero .subtitle {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
	font-weight: 600;
	color: #333;
	line-height: 1.6;
}

.page-hero p {
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
	color: #666;
	line-height: 1.8;
	font-weight: 400;
}

/* Content Section */
.content-section {
	padding: 3rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.content-section.bg-light {
	background: #FFFFFF;
	max-width: 100%;
	position: relative;
}

.content-section.bg-light::before {
	content: '';
	position: absolute;
	top: 10%;
	left: 5%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.content-section.bg-gradient {
	background: #FAFAFA;
	max-width: 100%;
	position: relative;
	overflow: hidden;
}

.content-section.bg-gradient::before {
	content: '';
	position: absolute;
	top: 20%;
	right: 10%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.content-section.bg-gradient::after {
	content: '';
	position: absolute;
	bottom: 10%;
	left: 15%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(247, 147, 30, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.section-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.intro-text {
	text-align: center;
	font-size: 1.25rem;
	line-height: 2;
	color: #555;
	margin-bottom: 2.5rem;
	font-weight: 400;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.intro-text strong {
	color: #FF6B35;
	font-weight: 700;
}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.section-header h2 {
	font-size: 2.8rem;
	color: #FF6B35;
	margin-bottom: 1rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.section-header p {
	font-size: 1.15rem;
	color: #666;
	line-height: 1.8;
	font-weight: 400;
}

/* Content with Image Layout - Modern Card Style */
.content-with-image {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin: 2rem 0;
	border-radius: 30px;
	overflow: hidden;
	background: white;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
}

.content-with-image:hover {
	box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
	transform: translateY(-5px);
}

.content-with-image.reverse {
	flex-direction: row-reverse;
}

.content-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3.5rem 3.5rem;
	background: white;
}

.content-text .content-icon {
	width: 85px;
	height: 85px;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.08));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.8rem;
}

.content-text h3 {
	font-size: 2.2rem;
	color: #333;
	margin-bottom: 1.3rem;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -0.5px;
}

.content-text p {
	font-size: 1.15rem;
	line-height: 1.9;
	color: #666;
	margin-bottom: 1.2rem;
	font-weight: 400;
}

.content-text p strong {
	color: #FF6B35;
	font-weight: 700;
}

.content-text ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.content-text ul li {
	padding: 0.9rem 0;
	padding-left: 2rem;
	color: #666;
	font-size: 1.1rem;
	line-height: 1.8;
	position: relative;
	font-weight: 400;
}

.content-text ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #FF6B35;
	font-weight: bold;
	font-size: 1.3rem;
}

.content-text .feature-card {
	background: transparent;
	padding: 0;
	box-shadow: none;
	margin: 0;
}

.content-text .feature-card:hover {
	transform: none;
}

.content-text .feature-card .icon {
	display: none;
}

.content-text .feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.content-text .feature-card p,
.content-text .feature-card ul {
	font-size: 1.05rem;
}

.content-text .text-block {
	background: transparent;
	padding: 0;
	box-shadow: none;
	margin: 0;
}

.content-image {
	flex: 1;
	min-height: 500px;
	overflow: hidden;
	position: relative;
}

.content-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.content-with-image:hover .content-image img {
	transform: scale(1.05);
}

/* Section Spacing */
.content-section + .content-section {
	padding-top: 2rem;
}

.content-section:first-of-type {
	padding-top: 3rem;
}

/* Feature Cards */
.feature-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.feature-card {
	background: white;
	padding: 2.5rem 2.5rem;
	border-radius: 25px;
	box-shadow: 0 3px 25px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease;
	border: none;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #FF6B35, #F7931E);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 35px rgba(255, 107, 53, 0.15);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card .icon {
	font-size: 2.5rem;
	margin-bottom: 1.8rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 75px;
	height: 75px;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.08));
	border-radius: 50%;
	box-shadow: none;
}

.feature-card h3 {
	font-size: 1.7rem;
	color: #333;
	margin-bottom: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.4;
}

.feature-card p {
	font-size: 1.05rem;
	line-height: 1.9;
	color: #666;
	margin-bottom: 1rem;
	font-weight: 400;
}

.feature-card ul {
	list-style: none;
	padding: 0;
}

.feature-card ul li {
	padding: 0.9rem 0;
	padding-left: 2rem;
	color: #666;
	font-size: 1.05rem;
	line-height: 1.8;
	position: relative;
	font-weight: 400;
}

.feature-card ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #FF6B35;
	font-weight: bold;
	font-size: 1.3rem;
}

/* Text Block */
.text-block {
	background: white;
	padding: 3rem 2.5rem;
	border-radius: 25px;
	box-shadow: 0 3px 25px rgba(0, 0, 0, 0.06);
	margin: 2rem 0;
	line-height: 2;
	font-size: 1rem;
	color: #666;
	font-weight: 400;
	transition: all 0.4s ease;
}

.text-block:hover {
	box-shadow: 0 8px 35px rgba(255, 107, 53, 0.12);
	transform: translateY(-3px);
}

.text-block h3 {
	font-size: 2rem;
	color: #FF6B35;
	margin-bottom: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.text-block p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.9;
}

.text-block strong {
	color: #FF6B35;
	font-weight: 700;
}

.text-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.text-block ul li {
	padding: 0.9rem 0;
	padding-left: 2rem;
	color: #666;
	font-size: 1.05rem;
	line-height: 1.9;
	position: relative;
	font-weight: 400;
}

.text-block ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #FF6B35;
	font-weight: bold;
	font-size: 1.3rem;
}

/* Call to Action with Background Image */
.cta-section {
	position: relative;
	padding: 8rem 2rem;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/main5.jpg') center/cover no-repeat;
	color: white;
}

.cta-section h2 {
	font-size: 2.8rem;
	margin-bottom: 2rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	position: relative;
	z-index: 1;
	color: white;
}

.cta-section p {
	font-size: 1.15rem;
	max-width: 700px;
	margin: 0 auto 2.5rem;
	line-height: 1.9;
	font-weight: 400;
	position: relative;
	z-index: 1;
	color: white;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	color: #333;
	padding: 1.2rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.cta-button::after {
	content: '→';
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.cta-button:hover {
	background: #FF6B35;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::after {
	transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
		position: absolute;
		right: 1rem;
		top: 50%;
		transform: translateY(-50%);
	}

	.header-container {
		flex-direction: row;
		justify-content: center;
		padding: 1rem;
	}

	.logo {
		height: 50px;
		gap: 8px;
	}

	.logo img {
		height: 35px;
	}

	.logo-text {
		font-size: 1.1rem;
	}

	nav, .nav-actions {
		display: none;
	}

	.page-hero {
		padding: 3rem 1.5rem;
	}

	.page-hero h1 {
		font-size: 2.2rem;
	}

	.page-hero .subtitle {
		font-size: 1.3rem;
	}

	.page-hero p {
		font-size: 1rem;
	}
	
	.page-hero::before,
	.page-hero::after {
		width: 250px;
		height: 250px;
	}

	.content-section {
		padding: 2.5rem 1.5rem;
	}

	.section-header h2 {
		font-size: 2.2rem;
	}

	.section-header p {
		font-size: 1rem;
	}

	.intro-text {
		font-size: 1.1rem;
		line-height: 2;
	}

	.image-gallery {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.gallery-item img {
		height: 250px;
	}

	.content-with-image {
		flex-direction: column;
		border-radius: 20px;
		margin: 1.5rem 0;
	}

	.content-with-image.reverse {
		flex-direction: column;
	}

	.content-text {
		padding: 2.5rem 2rem;
	}

	.content-text .content-icon {
		width: 80px;
		height: 80px;
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}

	.content-text h3 {
		font-size: 1.8rem;
		margin-bottom: 1.3rem;
	}

	.content-text p {
		font-size: 1.05rem;
		line-height: 1.8;
	}

	.content-text ul li {
		font-size: 1rem;
		padding-left: 1.8rem;
	}

	.content-image {
		min-height: 300px;
	}

	.feature-card {
		padding: 2rem 1.8rem;
	}

	.feature-card .icon {
		width: 75px;
		height: 75px;
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}

	.feature-card h3 {
		font-size: 1.5rem;
	}

	.feature-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.feature-card {
		padding: 2rem 1.5rem;
	}

	.text-block {
		padding: 2rem 1.8rem;
		font-size: 1rem;
		border-radius: 20px;
	}

	.text-block h3 {
		font-size: 1.7rem;
	}

	.text-block p {
		font-size: 1.05rem;
	}

	.text-block ul li {
		font-size: 1rem;
		padding-left: 1.8rem;
	}

	.cta-section {
		padding: 5rem 1.5rem;
	}

	.cta-section h2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.cta-section p {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.cta-button {
		padding: 1rem 2rem;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.logo-text {
		font-size: 0.95rem;
	}

	.logo img {
		height: 30px;
	}

	.page-hero h1 {
		font-size: 1.6rem;
	}

	.section-header h2 {
		font-size: 1.6rem;
	}

	.feature-card,
	.usage-card,
	.benefit-card {
		padding: 2rem 1.5rem;
	}

	.cta-section {
		padding: 4rem 1.5rem;
	}

	.cta-section h2 {
		font-size: 1.6rem;
		line-height: 1.5;
	}

	.cta-button {
		padding: 0.9rem 1.8rem;
		font-size: 0.95rem;
	}
}


/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.page-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: white;
	border: 2px solid #e0e0e0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: #666;
	transition: all 0.3s ease;
}

.page-btn:hover {
	border-color: #FF6B35;
	color: #FF6B35;
}

.page-btn.active {
	background: #FF6B35;
	color: white;
	border-color: #FF6B35;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.page-btn.arrow {
	border-radius: 20px;
	width: auto;
	padding: 0 1rem;
}

/* 그누보드에 적용 */
.ib-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.ib-page-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: white;
	border: 2px solid #e0e0e0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: #666;
	transition: all 0.3s ease;
	text-decoration: none;
}

.ib-page-btn:hover {
	border-color: #FF6B35;
	color: #FF6B35;
}

.ib-page-btn.active {
	background: #FF6B35;
	color: white;
	border-color: #FF6B35;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.ib-page-btn.arrow {
	border-radius: 20px;
	width: auto;
	padding: 0 1rem;
}


/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	border-radius: 20px;
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	cursor: pointer;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.modal-close:hover {
	background: #FF6B35;
	transform: rotate(90deg);
}

.modal-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.modal-body {
	padding: 2.5rem;
}

.modal-title {
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
}

.modal-meta {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid #f0f0f0;
}

.modal-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #999;
	font-size: 0.95rem;
}

.modal-description {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #555;
}

/* Footer Styles */
footer {
	background: linear-gradient(135deg, #1a1a1a, #333333);
	color: #f0f0f0;
	padding: 4rem 2rem 2rem;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
	color: #FF8C42;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.footer-about p {
	color: #ddd;
	line-height: 1.8;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.footer-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	color: #ccc;
	font-size: 0.95rem;
}

.footer-info-item strong {
	min-width: 70px;
	color: #FF8C42;
	font-weight: 600;
	margin-right: 0.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: #FF8C42;
	padding-left: 5px;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: #FF6B35;
	transform: translateY(-3px);
}

.footer-contact-btn {
	display: inline-block;
	background: #FF6B35;
	color: white;
	padding: 0.9rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 1.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.footer-contact-btn:hover {
	background: #F7931E;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: 2rem;
}

.footer-copyright {
	color: #999;
	font-size: 0.9rem;
}

.footer-logo-section {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-logo-section img {
	height: 30px;
	width: auto;
	opacity: 0.9;
}

.footer-logo-text {
	color: white;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 1px;
}

.footer-policies {
	display: flex;
	gap: 1.5rem;
}

.footer-policies a {
	color: #999;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-policies a:hover {
	color: #FF8C42;
}

.footer-policies a.important {
	color: #FF8C42;
	font-weight: 600;
}

/* Footer Responsive */
@media (max-width: 768px) {
	footer {
		padding: 3rem 1.5rem 1.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		margin-bottom: 2rem;
		padding-bottom: 2rem;
	}

	.footer-section h3 {
		font-size: 1.2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		padding-top: 1.5rem;
	}

	.footer-policies {
		flex-direction: column;
		gap: 0.8rem;
	}
}

/* Responsive Design */
@media (max-width: 1200px) {
	.nav-menu {
		gap: 1.2rem;
	}

	.nav-menu > li > a {
		font-size: 0.9rem;
	}

	.nav-actions {
		gap: 1rem;
	}

	.nav-actions a:not(.btn-donate) {
		font-size: 0.85rem;
	}

	.btn-donate {
		padding: 0.6rem 1.3rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 1024px) {
	.hamburger {
		display: flex;
		position: absolute;
		right: 1rem;
		top: 50%;
		transform: translateY(-50%);
	}

	.header-container {
		flex-direction: row;
		justify-content: center;
		padding: 1rem;
		position: relative;
	}

	nav {
		display: none;
	}

	.nav-actions {
		display: none;
	}

	.page-hero {
		padding: 6rem 2rem;
	}

	.page-hero h1 {
		font-size: 3rem;
	}

	.page-hero p {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.logo {
		height: 50px;
		gap: 8px;
	}

	.logo img {
		height: 35px;
	}

	.logo-text {
		font-size: 1.1rem;
		letter-spacing: 0.5px;
	}

	.page-hero {
		padding: 4rem 1.5rem;
	}

	.page-hero h1 {
		font-size: 2.2rem;
	}

	.page-hero p {
		font-size: 1.1rem;
	}
	

	.filter-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.filter-tabs {
		justify-content: center;
		gap: 0.7rem;
	}

	.filter-tab {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}

	.search-box {
		width: 100%;
	}

	.search-input {
		font-size: 0.9rem;
	}

	.search-btn {
		font-size: 0.9rem;
		padding: 0.7rem 1.2rem;
	}

	.search-input {
		flex: 1;
		width: auto;
	}


	.modal-content {
		margin: 1rem;
	}

	.modal-image {
		height: 300px;
	}

	.modal-body {
		padding: 1.5rem;
	}

	.modal-title {
		font-size: 1.5rem;
	}

	.modal-meta {
		flex-direction: column;
		gap: 0.5rem;
	}

	footer {
		padding: 3rem 1.5rem 1.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.logo-text {
		font-size: 0.9rem;
	}

	.logo img {
		height: 28px;
	}

	.page-hero {
		padding: 3rem 1rem;
	}

	.page-hero h1 {
		font-size: 1.8rem;
	}

	.page-hero p {
		font-size: 1rem;
	}

	
	.filter-tabs {
		gap: 0.5rem;
	}

	.filter-tab {
		padding: 0.5rem 0.9rem;
		font-size: 0.8rem;
	}

	.search-input {
		font-size: 0.85rem;
		padding: 0.6rem 1rem;
	}

	.search-btn {
		font-size: 0.85rem;
		padding: 0.6rem 1rem;
	}

	.footer-policies {
		flex-direction: column;
		gap: 0.8rem;
	}
}