.footer {
    background-color: #fff;
    color: #000;
    padding: 40px 10%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background-color: #f4f4f4;
    font-size: 12px;
}
.form-signup {
    max-width: 400px;
    margin: auto;
    text-align: center;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-primary {
    background-color: #80a2d5;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #678bbc;
}

.invalid-feedback {
    color: red;
    display: none;
}

.text-white {
    color: white;
}