
.footer {
    
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: #343a40;
    color: white;

    text-align: center;
}

.footer-container {
    padding: 1rem 1rem;
    width: 100%;
    /* background-color: #e84148; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-content,
.footer-links {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
}

.footer h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer p,
.footer ul {
    font-size: 14px;
    color: #d3d3d3;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

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

.footer-signup {

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
margin-top: 1rem;
margin-bottom: 1rem;
}
.footer-signup button{
    width: 9rem;

}

.signup-btn {
    background-color: #ff4757;
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: #e84148;
}

.footer-social a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
    color: #ff4757;
    transform: scale(1.1);
}

.footer-copyright a{
    margin-top: 20px;
    font-size: 14px;
    color: #d3d3d3;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content,
    .footer-links {
        text-align: center;
    }

    .footer-social a {
        font-size: 24px;
    }
}