/* Programs Section Styles */
.programs-section {
    min-height: 50vh;
    padding: 4rem 0;
    background-color: var(--background2-color);
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.programs-section .section-title {
    font-family: 'magazine', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: normal;
}

.programs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.program-item.clicked {
    transform: scale(0.98);
    transition: transform 0.2s ease;
}

.program-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color, #007bff);
    border-radius: 50%;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.program-content {
    flex-grow: 1;
}

.program-content h3 {
    font-family: 'magazine', sans-serif;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.7rem;
    font-weight: normal;
}

.program-content p {
    margin: 0;
    color: #666;
    line-height: 1;
    font-size: 1.2rem;
    font-family: 'magazine', sans-serif;
}

@media (max-width: 768px) {
    .programs-section {
        padding: 1rem 0;
    }

    .programs-section .section-title {
        font-size: 2rem;
    }

    .program-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .program-icon {
        margin-bottom: 0.2rem;
    }

    .program-content h3 {
        font-size:1.4rem;
    }

    .program-content p {
        font-size: 1.1rem;
    }
}