body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9fafb;
    color: #111;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
}

.cta-buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    margin: 5px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.primary {
    background: #10b981;
    color: white;
}

.secondary {
    background: white;
    color: #2563eb;
}

.quick-links .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}