
    .footer-4 a {
        color: inherit;
        text-decoration: none;
    }

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

.contact-icons {
    height: 35px;
    width: 35px;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.news-letter-container {
    text-align: center;
    color: #fff;
}
.news-letter-content h5 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}
.news-letter-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 15px;
}
.newsletter-input {
    flex: 1;
    border: 1px solid var(--primary);
    outline: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: #000;
    background-color: #fff; 
}
.newsletter-button {
    background: var(--primary);
    color: #fff !important;
    border: none;
    width: 150px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-button:hover {
    background: #4f27c6;
    /* Slightly darker on hover */
}
.social_icons_container {
    display: flex;
    gap: 10px;
}
.social_icons {
    display: inline-block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
@media (max-width: 768px) {
    .newsletter-field-container {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-input {
        max-width: 100%;
    }
    .newsletter-button {
        width: 100%;
    }
}
.social-ul-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-4 ul li {
    padding: 3px 0px;
}
