.footer {
    background-color: #101820; /* Dark background */
    color: #fff; /* White text color */
}

.footer-logo {
    max-width: 100px; /* Adjust as necessary */
}

.footer .footer-links h5 {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.footer .footer-links ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.6;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer .footer-links ul a:hover {
    color: #15d9c9;
}

.footer .subscribe-form {
    display: flex;
    align-items: center;
}
.footer .subscribe-form {
    display: flex;
    gap: 10px; /* Creates space between input and button */
    justify-content: center; /* Aligns form items centrally for smaller screens, adjust as necessary */
}

/*.footer .subscribe-form .subscribe-btn {
    padding: 10px 35px;*/ /* Increase right and left padding */
    /*white-space: nowrap;
}*/

.footer .subscribe-form .btn {
    display: inline-flex; /* Use flexbox for alignment */
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center content horizontally */
    text-align: center; /* Ensure text is centered */
    width: auto; /* Adjust width as necessary */
    padding: 10px 20px; /* Adjust padding to ensure proper spacing */
}

.footer .subscribe-form .form-control, .footer .subscribe-form .btn {
    flex-grow: 1; /* Allows input and button to expand to fill the available space */
    min-width: 0; /* Prevents form elements from overflowing their container */
}

.fab.fa-linkedin {
    font-size: 2em;
}

/* Adjust this media query to better fit your design requirements */
@media (max-width: 768px) {
    .footer .subscribe-form {
        flex-direction: column;
    }

        .footer .subscribe-form .form-control, .footer .subscribe-form .btn {
            width: 100%; /* Full width on smaller screens */
        }
}

