/* General styles for the footer */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer content container */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Paragraph styling in the footer */
.footer-content p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .footer {
        padding: 15px 0;
        font-size: 12px;
    }

    .footer-content {
        padding: 0 10px;
    }
}
