:root {
     --primary: #1a6b6e; /* Deep teal */
    --secondary: #2c3e50; /* Navy blue */
    --accent: #e67e22; /* Warm orange */
    --light: #f8f9fa;
    --dark: #212529;
    --lightGreen: #E2E3DA;
    --darkblue: #12124F;
}

.program-container {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
}

.program-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('/images/pictures/2017SummerCampStudents.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 8px;
    margin: 40px 0;
}

/* CSS Reset (minimal version) */
h1, h2, h3, h4, h5, h6, header {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    color: var(--primary);
    font-size: 1.8em;
    margin: 50px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

h4 {
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 1.3em;
    margin: 40px 0 20px;
}

.program-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.filter-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
}

.filter-btn:hover {
    background-color: #0056b3;
}
.program-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.program-table th {
    background: var(--primary);
    color: white;
    text-align: left;
    padding: 15px;
}

.program-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.program-table tr:nth-child(even) {
    background-color: var(--light);
}

.program-table tr:hover {
    background-color: #e8f4f5;
}

.program-category {
    font-weight: 600;
    color: var(--secondary);
}

.program-day {
    display: inline-block;
    background: var(--darkblue);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.language-toggle {
    text-align: center;
    margin: 20px 0;
}

.toggle-btn {
    padding: 8px 20px;
    background: var(--light);
    border: none;
    border-radius: 4px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
}

.chinese {
    display: none;
}

.faq-section {
    background: var(--light);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    margin-left: 20px;
}

.faq-question a 
{
	color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .program-table {
        display: block;
        overflow-x: auto;
    }
    
    .program-header {
        padding: 50px 20px;
    }
}