.error-container {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    color: #333;
}

.error-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    color: #39524F;
}

.error-title {
    font-size: 42px;
    font-weight: 700;
    color: #39524F;
    margin-bottom: 15px;
}

.error-message {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-link {
    display: inline-block;
    padding: 14px 30px;
    background-color: #39524F;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #39524F;
}

.error-link:hover {
    background-color: #5a9b94;
    border-color: #5a9b94;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.error-link:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .error-title {
        font-size: 32px;
    }
    
    .error-message {
        font-size: 16px;
    }
    
    .error-icon {
        width: 120px;
        height: 120px;
    }
    
    .error-link {
        padding: 12px 25px;
        font-size: 15px;
    }
}