/* Reset and Base Styles */
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}*/

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Animation Classes - 기본값을 보이게 설정 */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.stagger-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Hero Section */
.hero-section {
    width: 100%;
    max-width: 1200px;
    padding: 64px 16px;
    text-align: center;
}

.hero-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

/* Services Section */
.services-section {
    width: 100%;
    max-width: 1280px;
    padding: 42px 24px;
    background-color: white;
}

.services-grid {
    display: grid;
    gap: 24px;
}

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

.service-card {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    padding: 64px 42px;
}

.service-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 400 / 267;
    border-radius: 25px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    width: 100%;
}

.service-card-title {
    font-size: 27px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.4;
}

.service-card-description {
    font-size: 17px;
    font-weight: 400;
    color: #2d2d2d;
    line-height: 1.6;
}

/* Advantage Section */
.advantage-section {
    width: 100%;
    max-width: 1200px;
    padding: 64px 16px;
}

.advantage-list {
    display: flex;
    flex-direction: column;
}

.advantage-item {
    display: flex;
    gap: 32px;
    padding: 40px 80px 40px 0;
    border-top: 1px solid #e9e9e9;
    align-items: flex-start;
}

.advantage-icon {
    flex-shrink: 0;
    width: 142px;
    height: 142px;
    background-color: #3b3b3b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-icon {
    font-size: 64px;
    line-height: 1;
}

.advantage-content {
    flex: 1;
    padding-top: 24px;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    color: #3b3b3b;
    margin-bottom: 12px;
}

.advantage-desc {
    font-size: 18px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.8;
}

/* KOTRA Section */
.kotra-section {
    width: 100%;
    max-width: 1280px;
    padding: 42px 24px;
    background-color: white;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    color: #2d2d2d;
    letter-spacing: -0.02em;
}

/* Video Section */
.video-section {
    width: 100%;
    max-width: 1200px;
    padding: 0 16px 100px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta-section {
    width: 100%;
    position: relative;
    height: 300px;
    margin-top: 50px;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    color: white;
}

.cta-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
}

.cta-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 416px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 12px 32px;
    height: 50px;
    width: 200px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.btn-primary {
    background-color: #1428a0;
    color: white;
}

.btn-primary:hover {
    background-color: #0f1d7a;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: white;
    color: #121212;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-2col {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        padding-right: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 42px 24px;
    }
    
    .service-card-title {
        font-size: 24px;
    }
    
    .service-card-description {
        font-size: 16px;
    }
    
    .advantage-item {
        gap: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-right: 0;
    }
    
    .advantage-icon {
        width: 100px;
        height: 100px;
    }
    
    .emoji-icon {
        font-size: 48px;
    }
    
    .advantage-content {
        padding-top: 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 48px 16px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 32px 16px;
    }
}
