/*======================
    404 page
=======================*/

body {
    font-family: 'Arvo', serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.page_404 {
    padding: 40px 0;
    background: #fff;
}

.four_zero_four_bg {
    background-image: url(/404/img/error.gif);
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.four_zero_four_bg h1 {
    font-size: 80px;
    margin: 0;
    text-align: center;
    padding-top: 80px;
    color: #39ac31;
}

.contant_box_404 {
    margin-top: -50px;
    text-align: center;
}

.contant_box_404 h3 {
    font-size: 40px;
    margin-bottom: 20px;
}

.link_404 {
    color: #fff !important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.link_404:hover {
    background: #2d8a26;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .four_zero_four_bg h1 {
        font-size: 60px;
        padding-top: 40px;
    }
    
    .contant_box_404 h3 {
        font-size: 30px;
    }
}
