 :root {
            --primary: #7400b8;
            --primary-light: #9d4edd;
            --secondary: #5390d9;
            --tertiary: #4ea8de;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #2b2d42;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --gradient: linear-gradient(135deg, var(--primary), var(--tertiary));
            --radius: 16px;
            --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans KR', 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
        }
        
        /* Floating Menu */
        .floating-menu {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 1000;
        }
        
        .menu-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            z-index: 1001;
        }
        
        .menu-btn:hover {
            transform: scale(1.1);
        }
        
        .menu-btn.active {
            transform: rotate(135deg);
        }
        
        .menu-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .menu-wrapper.active {
            opacity: 1;
            visibility: visible;
        }
        
        .menu {
            list-style: none;
            text-align: center;
        }
        
        .menu li {
            margin: 20px 0;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
            transition-delay: calc(0.1s * var(--i));
        }
        
        .menu-wrapper.active .menu li {
            transform: translateY(0);
            opacity: 1;
        }
        
        .menu li a {
            color: white;
            font-size: 24px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
            position: relative;
            padding: 8px 5px;
            display: inline-block;
        }
        
        .menu li a:hover {
            color: var(--tertiary);
        }
        
        .menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: var(--transition);
        }
        
        .menu li a:hover::after {
            width: 100%;
            left: 0;
        }
        
        .menu li a.active {
            color: var(--tertiary);
        }
        
        .menu li a.active::after {
            width: 100%;
            left: 0;
        }
        
        .social-icons {
            display: flex;
            margin-top: 50px;
        }
        
        .social-icons a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin: 0 10px;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background: var(--gradient);
            transform: translateY(-5px);
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 40px;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 17px;
            font-weight: 700;
            display: flex;
            align-items: center;
            color: var(--primary);
            position: relative;
            z-index: 1000;
			
        }
        
        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Hero Section */
 .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(233, 236, 239, 0.9)), url('/api/placeholder/1200/800');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--text);
    position: relative;
    z-index: 1;
}
/*
.hero-title {
    font-size: 5vw;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.5s;
	 white-space: nowrap;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--text);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.7s;
}
*/
.btn-outline {
    border: 2px solid var(--primary);
    color: #333333 !important; 
    background-color: rgba(255, 255, 255, 0.9); /* ¹è°æ ºÒÅõ¸íµµ ³ôÀÓ */
    font-weight: 600; /* ±ÛÀÚ µÎ²®°Ô */
    box-shadow: 0 3px 10px rgba(116, 0, 184, 0.2);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(116, 0, 184, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(116, 0, 184, 0.3);
}
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeUp 1s forwards 0.9s;
        }
        
        .btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white; /* ±âº» ±ÛÀÚ»ö ¼³Á¤ */
}
        
        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 10px 25px rgba(116, 0, 184, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(116, 0, 184, 0.4);
        }
        
        .btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
        }
        
        /* Services Section */
        .section {
            padding: 120px 40px;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: var(--gradient);
            border-radius: 50px;
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .service-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .service-card:nth-child(1) {
            grid-column: span 8;
            grid-row: span 1;
            display: flex;
            flex-direction: row-reverse;
        }
        
        .service-card:nth-child(2) {
            grid-column: span 4;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:nth-child(3) {
            grid-column: span 4;
            grid-row: span 1;
        }
        
        .service-card:nth-child(4) {
            grid-column: span 4;
            grid-row: span 1;
        }
        
        .service-card-img {
            overflow: hidden;
            flex: 1;
        }
        
        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .service-card:hover .service-card-img img {
            transform: scale(1.1);
        }
        
        .service-card-content {
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-card:nth-child(1) .service-card-content,
        .service-card:nth-child(1) .service-card-img {
            flex: 0 0 50%;
        }
        
        .service-card:nth-child(2) .service-card-img {
            height: 60%;
        }
        
        .service-card:nth-child(2) .service-card-content {
            height: 40%;
        }
        
        .service-card h3 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .service-card p {
            font-size: 16px;
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .service-card-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        
        .service-card-link:hover {
            color: var(--tertiary);
            gap: 12px;
        }
        
        /* Features Section */
        .features-section {
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .features-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: var(--gradient);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            opacity: 0.05;
            z-index: 0;
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .feature-item {
            position: relative;
            padding: 40px 30px;
            border-radius: var(--radius);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            border-radius: var(--radius);
            z-index: -1;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .feature-item:hover::before {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        .feature-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gradient);
            border-radius: 5px 0 0 5px;
            transition: var(--transition);
        }
        
        .feature-item:hover::after {
            height: 100%;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(rgba(116, 0, 184, 0.1), rgba(78, 168, 222, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .feature-item:hover .feature-icon {
            transform: rotateY(360deg);
            background: var(--gradient);
            color: white;
        }
        
        .feature-item h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .feature-item p {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* CTA Section */
      /*
		.cta-section {
            background: var(--gradient);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 100px 40px;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }
        
        .cta-container {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 25px;
        }
        
        .cta-text {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .cta-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 50px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .cta-input {
            flex: 1;
            padding: 20px 30px;
            border: none;
            outline: none;
            font-size: 16px;
        }
        
        .cta-button {
            background: var(--dark);
            color: white;
            padding: 20px 40px;
            border: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .cta-button:hover {
            background: var(--text);
        }
		*/
        
        /* Footer */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 100px 40px 50px;
            position: relative;
        }
        
        .footer-top {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
            position: relative;
            display: inline-block;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--gradient);
        }
        
        .footer-about p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 12px;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-contact li {
            display: flex;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
        }
        
        .footer-contact li i {
            margin-right: 15px;
            color: var(--tertiary);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background: var(--gradient);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 64px;
            }
            
            .service-card:nth-child(1) {
                grid-column: span 12;
            }
            
            .service-card:nth-child(2) {
                grid-column: span 6;
            }
            
            .service-card:nth-child(3),
            .service-card:nth-child(4) {
                grid-column: span 6;
            }
        }
        
        @media (max-width: 991px) {
            .service-card {
                grid-column: span 12 !important;
            }
            
            .service-card:nth-child(1) {
                flex-direction: column;
            }
            
            .service-card:nth-child(1) .service-card-img,
            .service-card:nth-child(1) .service-card-content {
                flex: 0 0 100%;
            }
            
            .service-card:nth-child(1) .service-card-img {
                height: 300px;
            }
            
            .service-card:nth-child(2) {
                flex-direction: column;
            }
            
            .service-card:nth-child(2) .service-card-img {
                height: 300px;
            }
            
            .cta-form {
                flex-direction: column;
                border-radius: var(--radius);
            }
            
            .cta-button {
                border-radius: 0;
                padding: 15px;
            }
        }
        
        @media (max-width: 768px) {
		
			.service-card {
				display: flex;
				flex-direction: column;
				height: auto !important; 
			}
			
			.service-card-img {
				height: auto !important;
				max-height: 300px; 
				overflow: hidden;
			}
			
			.service-card-img img {
				width: 100% !important;
				height: auto !important;
				object-fit: cover;
			}
			
			.service-card-content {
				display: block !important;
				padding: 20px !important;
				min-height: auto !important;
			}
			
			
            .section {
                padding: 80px 20px;
            }
            
            .header {
                padding: 20px;
            }
            
            .hero-content {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 48px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .cta-title {
                font-size: 32px;
            }
            
            .floating-menu {
                bottom: 20px;
                right: 20px;
            }
            
            .menu-btn {
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .service-card-content {
                padding: 30px 20px;
            }
            
            .service-card h3 {
                font-size: 22px;
            }
            
            .feature-item {
                padding: 30px 20px;
            }
            
            .footer {
                padding: 80px 20px 30px;
            }
        }

		/*******************************************/
		/* ¼­ºñ½º »ó¼¼ ÆäÀÌÁö ½ºÅ¸ÀÏ */
.service-header {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(116, 0, 184, 0.8), rgba(78, 168, 222, 0.8)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.service-header-content {
    max-width: 900px;
    padding: 0 40px;
    z-index: 1;
}

.service-header-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-header-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.service-section {
    margin-bottom: 80px;
}

.service-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text);
    position: relative;
    padding-left: 20px;
}

.service-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient);
    border-radius: 4px;
}

.service-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-step {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.service-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.service-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.service-step p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(rgba(116, 0, 184, 0.1), rgba(78, 168, 222, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.service-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-feature-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.service-cta {
    background: linear-gradient(rgba(116, 0, 184, 0.02), rgba(78, 168, 222, 0.05));
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    margin: 60px 0;
}

.service-cta h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.service-cta p {
    font-size: 17px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-table thead {
    background: var(--gradient);
    color: white;
}

.service-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.service-table td {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.service-table tbody tr {
    background-color: white;
    transition: var(--transition);
}

.service-table tbody tr:hover {
    background-color: var(--light);
}

.service-table tbody tr:last-child td {
    border-bottom: none;
}

.faq-container {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 0 30px 20px;
    max-height: none;
}

.faq-answer p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* ¹ÝÀÀÇü Ãß°¡ */
@media (max-width: 768px) {
    .service-header {
        height: 40vh;
    }
    
    .service-header-title {
        font-size: 36px;
    }
    
    .service-content {
        padding: 0 20px 80px;
    }
    
    .service-cta {
        padding: 40px 20px;
    }
    
    .service-section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-header-title {
        font-size: 30px;
    }
    
    .service-header-subtitle {
        font-size: 16px;
    }
    
    .service-table th,
    .service-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
}
/**********************Ä«Ä«¿À******************/
/* ÇÃ·ÎÆÃ ¹öÆ° °ü·Ã CSS ¼öÁ¤ */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

    .floating-buttons a, .menu-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }


/* Ä«Ä«¿ÀÅå ¹öÆ° */

.kakao-btn, .menu-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.kakao-btn {
    background-color: #FEE500;
}
.phone-btn {
        background-color: #1c3c6b; /* ¸ðµÎÁö »çÀÌÆ®ÀÇ ÁÖ¿ä »ö»ó */
    }
/*.mobile-only {
        display: none;
    }*/
.floating-buttons .mobile-only {
    display: none !important;
}
.menu-btn {
    background-color: #4A90E2;
    color: white;
    font-size: 24px;
}

.menu-btn i {
    display: inline-block !important;
    font-size: 24px;
}

.kakao-btn:hover {
    transform: scale(1.1);
}

.kakao-btn img {
    width: 32px;
    height: 32px;
}

/* ¹ÝÀÀÇü Á¶Á¤ */
@media (max-width: 768px) {
	 .floating-buttons .mobile-only {
        display: flex !important;
    }
    .floating-buttons {
        bottom: 5px;
        right: 10px;
        gap: 5px;
    }
    
    .kakao-btn {
        width: 50px;
        height: 50px;
    }
    
    .kakao-btn img {
        width: 26px;
        height: 26px;
    }
}
.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.login-icon {
    position: relative;
    margin-left: 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-icon:hover {
    color: #4A90E2;
}

.login-icon .icon-circle {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A90E2, #3F51B5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    box-shadow: 0 4px 10px rgba(63, 81, 181, 0.3);
    transition: all 0.3s ease;
}

.login-icon .icon-circle i {
    color: white;
    font-size: 16px;
}

.login-icon:hover .icon-circle {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(63, 81, 181, 0.4);
    background: linear-gradient(135deg, #3F51B5, #4A90E2);
}

.login-icon .label {
    white-space: nowrap;
}
/*****************************************/
.logout-icon {
    position: relative;
    margin-left: 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
}
.logout-icon:hover {
    color: #E24A4A;
}
.logout-icon .icon-circle {
    width: 27px;
    height: 27px;
    border-radius: 50%;
   /* background: linear-gradient(135deg, #E24A4A, #B53F3F); */
   background: linear-gradient(135deg, #4A90E2, #3F51B5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    box-shadow: 0 4px 10px rgba(181, 63, 63, 0.3);
    transition: all 0.3s ease;
}
.logout-icon .icon-circle i {
    color: white;
    font-size: 16px;
}
.logout-icon:hover .icon-circle {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(181, 63, 63, 0.4);
    /*background: linear-gradient(135deg, #B53F3F, #E24A4A);*/

	 background: linear-gradient(135deg, #3F51B5, #4A90E2);
}
.logout-icon .label {
    white-space: nowrap;
}