.error-404-page {
    padding: 80px 0;
    text-align: center;
    /* min-height: 60vh; */
    display: flex;
    align-items: center;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.error-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.error-illustration {
    margin: 40px 0;
}

.fish-icon {
    animation: swim 3s ease-in-out infinite;
}

.error-subtitle {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.error-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0077B6;
    color: white;
}

.btn-secondary {
    border: 2px solid #0077B6;
    color: #0077B6;
}

.btn-primary:hover {
    background-color: #005b8c;
}

.btn-secondary:hover {
    background-color: #0077B6;
    color: white;
}

@keyframes swim {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

@media (max-width: 768px) {
    .error-title {
        font-size: 2.5rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 15px;
    }
}