/* Fundraising Guru Consulting - Custom Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Error page styling */
.error-page {
    text-align: center;
    padding: 60px 0 80px;
}

.error-page h2 {
    font-size: 72px;
    color: #061948;
    margin-bottom: 10px;
}

.error-page h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.error-page p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-page .or {
    display: inline-block;
    margin: 0 15px;
    color: #999;
    font-size: 14px;
}

/* Client list styling */
.clients-list ul {
    list-style: none;
    padding: 0;
    column-count: 2;
}

.clients-list ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .clients-list ul {
        column-count: 1;
    }
}
