/* Error Section Styling */
.error-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 20px;
}

.error-container {
    max-width: 500px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
}

.error-icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
}

.error-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.error-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.error-contact {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.error-contact p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.retry-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.retry-btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .error-container {
        padding: 30px 20px;
    }

    .error-icon {
        font-size: 48px;
    }

    .error-title {
        font-size: 20px;
    }

    .error-message {
        font-size: 14px;
    }
}
