@font-face {
    font-family: 'Goyang';
     src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2411-3@1.0/Ownglyph_ParkDaHyun.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SeoulNotice';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2505-1@1.0/SeoulAlrimTTF-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'SeoulNotice';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2505-1@1.0/SeoulAlrimTTF-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SeoulNotice', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.site-header {
    background: white;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-logo {
    max-width: 180px;
    height: auto;
}

.hero {
    background: #FFF9F0;
    padding: 60px 20px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    color: #333;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
    animation: fadeInUp 1s ease-out;
}

.hero-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 8px;
    background: #FF9B50;
    border-radius: 4px;
    margin-top: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: #FF9B50;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #E88A3D;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    font-family: 'SeoulNotice', sans-serif;
    position: relative;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #E88A3D;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #E88A3D;
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.4rem;
}

.sparkle {
    display: inline-block;
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.empathy {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: #FFD93D;
    border-radius: 3px;
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.scenario-card {
    background: #FFF9F0;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #FFD93D;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-10px);
    border-color: #FF9B50;
}

.scenario-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.scenario-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.how-it-works {
    padding: 80px 20px;
    background: #FFF9F0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #FFE4B5;
    top: 50px;
    right: 50px;
    z-index: 0;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    position: relative;
    border: 3px solid #FFD93D;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #FF9B50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 0 #E88A3D;
}

.step-icon {
    font-size: 3.5rem;
    margin: 20px 0 15px;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #FF9B50;
    font-weight: bold;
}

.steps-images {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.step-image-wrapper {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    background: white;
    border: 3px solid #FFD93D;
    border-radius: 30px;
    padding: 30px 20px 25px;
    transition: all 0.3s ease;
}

.step-image-wrapper:hover {
    border-color: #FF9B50;
    transform: translateY(-10px);
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
}

.step-image:hover {
    transform: scale(1.05);
}

.steps-images .step-arrow {
    font-size: 3rem;
    color: #FF9B50;
    font-weight: bold;
    flex-shrink: 0;
}

.step-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta {
    padding: 100px 20px;
    background: #FF9B50;
    text-align: center;
    color: white;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 217, 61, 0.3);
    top: -50px;
    left: 10%;
}

.final-cta::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 217, 61, 0.3);
    bottom: -30px;
    right: 15%;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF9B50;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999;
}

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

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
        order: 2;
    }
    
    .hero-slider-wrapper {
        height: 350px;
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-text {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .steps-images .step-arrow {
        display: none;
    }
    
    .steps-images {
        gap: 30px;
    }
    
    .step-image-wrapper {
        max-width: 250px;
    }
    
    .scenarios {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
