    .container-404 {
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center;
    }
    .centered-div-404 {
            text-align: center;
            padding: 10px 40px;
            max-width: 500px;
            width: 100%;
    }

    /* 404 Heading */
    .heading-404 {
        font-size: 6em; /* Large 404 text */
        color: #e74c3c; /* Red color for emphasis */
        margin-bottom: 10px;
        font-weight: bold;
        line-height: 1; /* Adjust line height */
    }

    /* Sub-heading */
    .sub-heading {
        font-size: 1.5em;
        color: #555;
        margin-bottom: 20px;
    }

    /* Paragraph text */
    .message {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* Call to action button */
    .home-button {
        display: inline-block;
        background-color: #3498db; /* Blue button */
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none; /* Remove underline from link */
        font-weight: bold;
        transition: background-color 0.3s ease; /* Smooth hover effect */
    }

    .home-button:hover {
        background-color: #2980b9; /* Darker blue on hover */
    }
