.site-footer {
    background-color: #f5f5f5;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e0e0e0;
    text-align: center; /* This centers text horizontally */
    font-family: 'Roboto', sans-serif;
    width: 100%; /* Ensure full width */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto; /* This centers the container */
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers child elements */
}

.site-footer p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    text-align: center; /* Redundant but ensures text stays centered */
}

