.footer {
    background-color: #002f87; /* Deep Blue */
    color: white;
    padding: 50px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.take-action h2 {
    font-style: italic;
    font-size: 24px;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.action-btn {
    border: 2px solid white;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.action-btn:hover {
    background-color: white;
    color: #002f87;
}

.footer-divider {
    width: 80%;
    border-top: 1px solid white;
    margin: 20px auto;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-left {
    max-width: 300px;
    text-align: left;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-left a {
    color: white;
    text-decoration: none;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}
