:root {
    --primary-color: #2563eb;
    --secondary-color: #f3f4f6;
    --text-color: #1f2937;
    --max-width: 800px;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

header {
    background: var(--secondary-color);
    padding: 2rem 0;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #e5e7eb;
}

/* Program Card Styles */
.program-card {
    display: block;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

/* Image Slider Styles */
.image-slider {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.image-slider img {
    flex: 0 0 300px;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    scroll-snap-align: start;
}

/* Form Styles */
.my-form { display: flex; flex-direction: column; gap: 1rem; }
.my-field { display: flex; flex-direction: column; }
.my-input { padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; }
.my-btn { background: var(--primary-color); color: white; padding: 0.75rem; border: none; cursor: pointer; border-radius: 4px; }
.my-success { padding: 1rem; background: #d1fae5; color: #065f46; border-radius: 4px; }
