:root {
    --primary: #2563eb;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #334155;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--text);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

header p {
    margin-bottom: 3rem;
    color: #64748b;
}

.card-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 600px;
    transition: transform 0.2s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 2rem;
}

.card h2 {
    font-size: 1.5rem;
    margin-top: 0;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    /*height: 80px;*/ /* Ensures buttons stay aligned */
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: #1d4ed8; }

.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: #059669; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .card { width: 100%; }
}
