/* 설립목적 페이지 전용 스타일 */

.purpose-section {
    margin-bottom: 2rem;
}

.purpose-content {
    padding: 3rem;
    line-height: 1.5;
}

/* 설립목적 이미지 스타일 */
.purpose-image {
    margin-bottom: 2rem;
    text-align: center;
}

.purpose-main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.purpose-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
}

.purpose-intro {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #007bff !important;
    margin-bottom: 2rem !important;
}

.purpose-goals {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.goals-intro {
    font-weight: 600;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 1.05rem;
}

.goals-list li:last-child {
    border-bottom: none;
}

.goals-list strong {
    color: #6b53d3;
}

.purpose-closing {
    margin-top: 2rem !important;
    font-size: 1.2rem !important;
    text-align: center;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .purpose-content {
        padding: 2rem 1.5rem;
    }
    
    .purpose-text p {
        font-size: 1rem;
    }
    
    .purpose-intro {
        font-size: 1.2rem !important;
    }
    
    .purpose-goals {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .purpose-content {
        padding: 1.5rem 1rem;
    }
    
    .purpose-intro {
        font-size: 1.1rem !important;
    }
    
    .purpose-goals {
        padding: 1rem;
    }
}
