/* General Layout */
.error-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #f4f4f4;
    padding: 20px;
}

.error-container {
    max-width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    text-align: center;
}

.error-image-container {
    margin-bottom: 0;
}

.error-image {
    width: 100%;
    max-width: 1200px;  /* Limiting max-width for the image */
    height: auto;  /* Keeping image proportions intact */
    margin: 0 auto;
    border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .error-section {
        padding: 0;  /* Remove padding from the section */
        height: auto;
    }

    .error-container {
        padding: 10px;  /* Adjust container padding to reduce space */
    }

    .error-image-container {
        margin: 0;  /* Remove any margin above and below the image container */
    }

    .error-image {
        width: 100%;
        max-width: 400px;  /* Image adjustment for smaller screens */
        margin: 0;  /* Remove any margin around the image */
    }

    .chat-button-container {
        margin: 0;  /* Adjust the margin of the chat button */
    }

    .footer-note {
        margin-top: 20px;  /* Adjust footer margin */
    }
}

