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

h1 {
    margin-bottom: 12px;
}

.description,
.footer-info {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 320px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.card h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.section-title {
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 8px;
}

.metric-line {
    font-size: 20px;
    font-weight: bold;
    margin: 12px 0 18px 0;
}

.metric-value {
    font-weight: bold;
}

.card ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.card li {
    margin-bottom: 6px;
}

.status {
    margin-top: 18px;
    color: #666;
    font-size: 14px;
}

.error {
    color: #b3261e;
    margin-top: 18px;
    font-size: 14px;
}

.email {
    color: #0b57d0;
    text-decoration: none;
}