:root {
    --primary-color: #000000;
    --accent-color: #3700ff;
    --text-color: #000000;
    --light-bg: #f8f9fb;
    --white: #ffffff;
}

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

body {
    /* 폰트를 Pretendard로 변경 */
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    
    /* 기본 글씨 두께를 굵게 설정 (기본은 400. 더 굵게 하려면 600 입력) */
    font-weight: 500; 
    
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    
    /* 단어 끊김 방지 */
    word-break: keep-all; 
    overflow-wrap: break-word; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 추가된 기본 그림자 */
}

header .container {
    max-width: 95%; /* 화면 넓이의 95%까지 시원하게 퍼지도록 설정 */
    padding: 0 0px; /* 양쪽 끝에 딱 붙지 않도록 여백 추가 */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: var(--light-bg);
}

.hero-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.text-red {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #000000;
}

.hero-btns .btn-dark {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    display: inline-block;
}

.hero-btns .btn-outline {
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    margin-left: 15px;
    display: inline-block;
}

/* Cards Section */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    padding: 50px 30px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 0px;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}
















/* --- About Page Specific Styles --- */

.about-hero {
    padding: 160px 0 60px;
    background: var(--white); /* 메인과 다르게 하얀 배경으로 깔끔하게 */
}

.mission-section {
    padding: 80px 0 100px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 36px; /* 기존 40px에서 한 줄에 들어가도록 살짝 축소 */
    color: var(--primary-color);
    margin-bottom: 25px;
    white-space: nowrap; /* 글자가 영역을 넘어가도 강제로 한 줄로 유지 */
    letter-spacing: -0.5px; /* 자간을 살짝 좁혀서 더 안정감 있게 배치 */
}

/* (참고) 모바일처럼 화면이 아주 작아질 때는 어쩔 수 없이 줄바꿈이 되도록 예외 처리 */
@media (max-width: 768px) {
    .mission-text h2 {
        white-space: normal; 
        font-size: 28px;
    }
}

.mission-text p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #e9ecef;
    border-radius: 0px;
}
/* --- About Page Extended Styles --- */

.feature-list {
    list-style: none; /* 기본 불릿도 제거 */
    margin-top: 20px;
}

.feature-list li {
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
    /* padding-left: 25px;  <- 기존 여백 삭제 */
    /* position: relative;  <- 불필요한 속성 삭제 */
    line-height: 1.6;
}

.network-stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.network-stats h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

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

.stat-box h3 {
    font-size: 40px;
    color: var(--accent-color); /* 강조되는 수치는 레드로 */
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: #d1d8e0;
}