#footer-section {
    width: 100%;
    max-width: 1600px;
    margin: 0;
    padding: 10px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
    border-radius: 10px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    bottom: 0;
}

.footer-text {
    color: #666;
    font-size: clamp(0.7rem, 0.9vw, 0.9rem); /* Responsive font size */
    margin: 5px 0;
}
