/* Start of Footer styling */
/*  */
.footer {
    background-color: rgba(87, 184, 148, 1);
    padding: 20px;
    color: white;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0%;
    margin-top: auto;
}


/* Footer content container */
.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-left {
    flex: 1;
    text-align: left;
    display: flex;
}

.footer-left p,
.footer-right p {
    margin: 0;
    /* Remove extra margins */
    padding: 2px 20px;
    /* Adjust padding to make it smaller */
}

.footer-right {
    flex: 1;
    display: flex;
    /* Enable flexbox for the right section */
    justify-content: right;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
    text-align: center;
    /* Optional, in case text alignment is needed */
}