/* General Critical CSS for Edmark LMS */
.edmark-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.edmark-section { padding: 60px 0; }
.edmark-title { font-size: 36px; font-weight: 700; text-align: center; margin: 0 0 40px 0; color: #111827; }
.edmark-subtitle { font-size: 18px; text-align: center; margin: 0 0 60px 0; color: #666; max-width: 800px; margin-left: auto; margin-right: auto; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 500; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background: #FF6B6B; color: white; }
.btn-primary:hover { background: #ff5252; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #FF6B6B; border: 2px solid #FF6B6B; }
.btn-secondary:hover { background: #FF6B6B; color: white; }
.card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
@media (max-width: 768px) {
    .edmark-section { padding: 40px 0; }
    .edmark-title { font-size: 28px; margin-bottom: 30px; }
    .edmark-subtitle { font-size: 16px; margin-bottom: 40px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .card { padding: 20px; }
}
