/* 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;
}
*/
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* 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: 1200px;
    padding: 48px 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    border-top: 1px solid #e9e9e9;
    padding-top: 40px;
    padding-right: 20px;
}

.service-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 24px;
}

.service-icon img,
.service-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6f6f6f;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

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

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

.advantage-number {
    font-size: 15px;
    font-weight: 500;
    color: #999;
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-content {
    font-size: 15px;
    line-height: 1.7;
}

.advantage-title {
    font-weight: 500;
}

.advantage-desc {
    color: #666;
}

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

.process-header {
    margin-bottom: 40px;
}

.process-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 4px;
}

.process-title {
    font-size: 24px;
    font-weight: 500;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.timeline-line {
    position: absolute;
    top: 100px;
    left: 3%;
    right: 3%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    flex: 1;
    min-width: 0;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-label {
    font-size: 12px;
    line-height: 1.2;
    color: #222;
    text-align: center;
}

.step-dot {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid black;
}

/* Courier Section */
.courier-section {
    width: 100%;
    max-width: 1200px;
    padding: 80px 40px;
    background-color: white;
}

.courier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.courier-item {
    aspect-ratio: 1584 / 672;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s ease;
    background-color: #f8f8f8;
}

.courier-item:hover {
    transform: scale(1.02);
}

.courier-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.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.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 448px;
    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;
}

.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 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-item {
        padding-right: 16px;
    }
    
    .process-timeline {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        gap: 24px;
    }
    
    .courier-grid {
        grid-template-columns: 1fr;
    }
    
    .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;
    }
}