/* 페이지 타이틀 섹션 */
.page-title {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,58,109,0.8), rgba(42,82,152,0.8));
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-title p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* 공통 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 섹션 공통 스타일 */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1a3a6d;
}

/* 회사 소개 섹션 */
.intro-section {
    background: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    color: #1a3a6d;
    margin-bottom: 30px;
    line-height: 1.4;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 전문가 그룹 섹션 */
.expert-section {
    background: #f8f9fa;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.expert-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.expert-item:hover {
    transform: translateY(-5px);
}

.expert-icon {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.expert-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a3a6d;
}

.expert-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a5298;
}

/* 업무 영역 섹션 */
.service-section {
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    font-size: 1.3rem;
    color: #1a3a6d;
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.service-item ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.service-item li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2a5298;
}

/* 네트워크 섹션 */
.network-section {
    background: #f8f9fa;
}

.network-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.network-map img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.network-info {
    text-align: left;
}

.network-info h3 {
    font-size: 2rem;
    color: #1a3a6d;
    margin-bottom: 20px;
}

.network-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.network-button {
    display: inline-block;
    padding: 15px 30px;
    background: #2a5298;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.network-button:hover {
    background: #1a3a6d;
}

/* 대표 인사말 섹션 */
.ceo-message {
    padding: 100px 0;
    background: #fff;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.message-text {
    padding-right: 0;
}

.highlight-message {
    margin: 40px 0;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #1a3a6d;
    word-break: keep-all;
}

.highlight-message p {
    margin-bottom: 25px;
    font-weight: 600;
    word-break: keep-all;
word-wrap: break-word;
}

.welcome-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    word-break: keep-all;
}

.welcome-message p {
    margin-bottom: 25px;
    word-break: keep-all;
word-wrap: break-word;
}

/* 대표 프로필 */
.ceo-profile {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.profile-image {
    margin-bottom: 35px;
    text-align: center;
}

.profile-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.profile-info h3 {
    font-size: 1.6rem;
    color: #1a3a6d;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #333;
    word-break: keep-all;
    word-wrap: break-word;
}

.career-list li:last-child {
    border-bottom: none;
}

.career-list span {
    display: inline-block;
    width: 45px;
    margin-right: 15px;
    font-size: 0.9rem;
    text-align: center;
    padding: 3px 0;
    border-radius: 4px;
}

.career-list .current {
    background: #2a5298;
    color: #fff;
}

.career-list .past {
    background: #e9ecef;
    color: #666;
}

.career-list .award {
    background: #ffd700;
    color: #1a3a6d;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .message-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .highlight-message {
        font-size: 1.4rem;
    }

    .welcome-message {
        font-size: 1.1rem;
    }

    .ceo-profile {
        padding: 40px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-title {
        padding: 80px 0;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .page-title p {
        font-size: 1.2rem;
    }

    .highlight-message {
        font-size: 1.3rem;
    }

    .welcome-message {
        font-size: 1rem;
    }

    .ceo-message {
        padding: 60px 0;
    }

    .ceo-profile {
        padding: 30px;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .network-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 1.8rem;
    }

    .page-title p {
        font-size: 1rem;
    }

    .highlight-message {
        font-size: 1.2rem;
    }

    .welcome-message {
        font-size: 0.95rem;
    }

    .profile-info h3 {
        font-size: 1.4rem;
    }

    .career-list li {
        font-size: 1rem;
    }

    .expert-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .ceo-profile {
        padding: 25px;
    }
}

/* 핵심 가치 섹션 */
.core-values {
    background: #f8f9fa;
    padding: 100px 0;
}

.core-values .section-title {
    margin-bottom: 60px;
}

.core-values .section-title strong {
    display: block;
    color: #2a5298;
    font-size: 2.4rem;
    margin-top: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-image {
    margin-bottom: 30px;
}

.value-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.value-card h3 {
    color: #1a3a6d;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    word-break: keep-all;
    word-wrap: break-word;
}

/* 반응형 디자인에 핵심 가치 섹션 스타일 추가 */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .core-values {
        padding: 60px 0;
    }

    .core-values .section-title strong {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-card {
        padding: 30px;
    }

    .value-image img {
        width: 100px;
        height: 100px;
    }

    .value-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .core-values .section-title strong {
        font-size: 1.6rem;
    }

    .value-card {
        padding: 20px;
    }

    .value-card h3 {
        font-size: 1.4rem;
    }

    .value-card p {
        font-size: 1rem;
    }
}
