/* Supportive Fintech Engine 2026 - Specially for CreditMum.com */
:root {
    --brand-warm: #7b61ff;       /* Soft Purple */
    --brand-accent: #ff8eab;     /* Friendly Pink/Rose */
    --bg-soft: #fffafb;          /* Off-white warm blush */
    --text-main: #2d3436;        /* Deep Charcoal */
    --text-muted: #636e72;       /* Light Grey */
}

body {
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-family: 'Poppins', 'Segoe UI', sans-serif; /* Modern, friendly font */
    margin: 0;
    line-height: 1.8;
}

header {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9f0ff 100%);
}

h1 {
    font-size: 3.2rem;
    color: var(--brand-warm);
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
}

/* Rounded, Soft Cards */
.card {
    background: white;
    border-radius: 24px; /* Very rounded */
    padding: 40px;
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(123, 97, 255, 0.1);
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--brand-warm), var(--brand-accent));
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(123, 97, 255, 0.3);
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: scale(1.03);
}

footer {
    text-align: center;
    padding: 60px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
