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

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 3px solid #2c3e50;
    margin-bottom: 40px;
}

.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.title-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.company-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin: 0;
    font-weight: 300;
}

.subtitle {
    font-size: 1.2em;
    color: #3498db;
    font-weight: 500;
    margin: 0;
}

.catchphrase {
    margin-top: 25px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #3498db;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.catchphrase p {
    font-size: 1.3em;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

.catchphrase::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3em;
    color: #3498db;
    font-weight: bold;
    line-height: 1;
}

.catchphrase::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 15px;
    font-size: 3em;
    color: #3498db;
    font-weight: bold;
    line-height: 1;
}

/* 모바일에서는 세로로 배치 */
@media (max-width: 768px) {
    .title-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .company-title {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .catchphrase {
        margin-top: 20px;
        padding: 15px 20px;
    }
    
    .catchphrase p {
        font-size: 1.1em;
    }
    
    .catchphrase::before,
    .catchphrase::after {
        font-size: 2.5em;
    }
    
    .catchphrase::before {
        top: -8px;
        left: 10px;
    }
    
    .catchphrase::after {
        bottom: -15px;
        right: 10px;
    }
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8em;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.subsection-title {
    font-size: 1.3em;
    color: #34495e;
    margin-bottom: 15px;
    font-weight: 600;
}

.content {
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.highlight-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.cert-item {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #27ae60;
}

.portfolio-item {
    background: #fff3cd;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* 현재 진행 프로젝트 강조 스타일 */
.current-project-item {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 6px solid #2196f3;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

.current-project-title {
    color: #1976d2;
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 8px;
}

/* 이전 경력 성과 스타일 */
.previous-achievement {
    background: #f8f9fa;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    font-size: 1em;
    color: #333;
}

.previous-achievement strong {
    color: #2c3e50;
    font-size: 1em;
    font-weight: 600;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.contact-info {
    background: #2c3e50;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-title {
    font-size: 1.4em;
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

@media print {
    body {
        background: white;
    }
    .container {
        box-shadow: none;
        max-width: none;
    }
}
