.myfooter {
    background-color: var(--background-color-dark);
    color: white;
    padding: 40px 0;
    text-align: left;
}

.myfooter-content {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of columns if necessary */
    justify-content: space-between;
}

.myfooter-column {
    margin-bottom: 20px;
}

.myfooter-brand {
    flex: 0 0 400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.myfooter-services, .myfooter-about {
    flex: 0 0 250px;
    max-width: 100%;
}

.myfooter h2, .myfooter h3 {
    margin-bottom: 15px;
    font-weight: normal;
}

.myfooter h2 {
    font-weight: bold;
}

.myfooter ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.myfooter ul li {
    margin-bottom: 10px;
}

.myfooter ul li a {
    color: white;
    text-decoration: none;
}

.myfooter ul li a:hover {
    text-decoration: underline;
}

.myfooter-tiny-text {
    font-size: 0.75em;
}