/* 404 Page Specific Styles */
.error-404-section {
    text-align: left;
    min-height: 100vh;
    background-size: contain;
    background-position: center !important;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.error-404-content {
    max-width: 600px;
    /* margin: 0 auto; */
}

.error-404-section .hero-title {
    font-size: 120px;
    margin-bottom: 10px;
}

.error-404-section .hero-description {
    font-size: 40px;
    margin-bottom: 20px;
}

.error-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    margin-bottom: 40px;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: #F95035;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #FFF;
}

/* Media Queries */
@media screen and (max-width: 992px) {

    .error-404-section .hero-title {
        font-size: 100px;
    }

    .error-404-section .hero-description {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {

    .contact-info-content {
        font-size: 18px;
    }

    .error-404-section .hero-title {
        font-size: 80px;
    }

    .error-404-section .hero-description {
        font-size: 30px;
    }

    .error-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {

    .error-404-section .hero-title {
        font-size: 60px;
    }

    .error-404-section .hero-description {
        font-size: 24px;
    }
}