body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

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

.title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    background-color: #f8f8f8;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.card-title {
    margin: 0;
    font-size: 1.5rem;
}

.card-content {
    padding: 1rem;
}

.text-muted {
    color: #666;
}

.org-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.org-card {
    background-color: #f8f8f8;
    border-radius: 4px;
    overflow: hidden;
}

.org-card-header {
    background-color: #e0e0e0;
    padding: 0.5rem;
    text-align: center;
}

.org-card-title {
    margin: 0;
    font-size: 1.2rem;
}

.org-card-content {
    padding: 0.5rem;
}

.org-card-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.activities-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: space-between;
}

.activity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon {
    width: 24px;
    height: 24px;
    color: #0066cc;
}

.goals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.goal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.goal-title {
    font-weight: bold;
}

.goal-description {
    margin: 0;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .org-chart,
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

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

.activity-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.activity-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.activity-header .icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    color: #0066cc;
}

.activity-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.activity-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.activity-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .activity-item {
        padding: 20px;
    }

    .activity-header h3 {
        font-size: 1.25rem;
    }

    .activity-content li {
        font-size: 0.95rem;
    }
}