/* 회사 개요 섹션 */
.company-overview {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 54px;
    color: #444;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: #5A8DEE; /* 파스텔 블루 */
    bottom: -10px;
    left: 0;
}

.company-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.company-info strong {
    font-weight: 700;
    color: #5A8DEE; /* 파스텔 블루 */
}

/* 이미지 컨테이너 스타일 */
.image-container {
    overflow: hidden;
    border-radius: 15px;
    transform: scale(1);
    transition: transform 0.6s ease-in-out;
}

.image-container img {
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.image-container:hover {
    transform: scale(1.05);
}

/* 개발 이념 스타일 */
.development-ideology {
    padding: 60px 0;
    background: linear-gradient(to right, #A6D9F2, #B0E4C4); /* 밝고 연한 블루-라임 그린 그라데이션 */
    color: #fff;
}

.ideology-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.ideology-item {
    text-align: center;
    margin-bottom: 20px;
    padding: 36px;
    transition: transform 0.3s ease, color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    cursor: pointer;
}

.ideology-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #003366; /* 진한 파스텔 보라색 */
    transition: color 0.3s ease;
}

.ideology-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #003366; /* 진한 파스텔 보라색 */
}

.ideology-item p {
    font-size: 1.2rem;
    color: #fff;
}

.ideology-item:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.ideology-description {
    font-size: 1.25rem;
    margin-top: 30px;
    color: #fff;
}
