/* Main Styles */
:root {
    --primary-color: #110066;
    --secondary-color: #ff3333;
    --background-color: #f5f6fa;
    --text-color: #333;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.curriculum-header {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--background-color);
}

.page-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto;
}

/* Subject Grid */
.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.subject-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.subject-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.topic-list {
    list-style: none;
    padding: 0;
}

.topic-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkmark {
    color: #22c55e;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Locations Section */
.locations-section {
    padding: 4rem 2rem;
    background: var(--background-color);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.location-button {
    display: block;
    padding: 0.75rem;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.location-button.primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.location-button.secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.location-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {

    .page-title {
        font-size: 2rem;
    }
    
    .subjects-grid {
        grid-template-columns: 1fr;
    }
}