/* Footer Styles */
.footer-main {
    background-color: #3C3C3C;
    color: white;
    padding: 60px 0 40px;
}

.footer-bottom {
    background-color: #3C3C3C;
    color: white;
    padding: 30px 0;
}

.footer-copyright {
    background-color: #010f16;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-about, 
.footer-categories, 
.footer-links, 
.footer-blogs {
    width: 23%;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-main h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-main h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-main ul {
    list-style: none;
    padding: 0;
}

.footer-main ul li {
    margin-bottom: 10px;
}

.footer-main ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-main ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-info {
    width: 48%;
}

.footer-subscribe {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    background: transparent;
}

.footer-newsletter {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
}

.footer-newsletter input {
    height: 40px;
    flex: 1;
    padding: 0 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.footer-subscribe-btn {
    padding: 0 20px;
    height: 40px;
    background-color: white;
    color: #13709a;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-subscribe-btn:hover {
    background-color: #f0f0f0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-about, 
    .footer-categories, 
    .footer-links, 
    .footer-blogs {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .footer-info,
    .footer-subscribe {
        width: 100%;
    }
    
    .footer-subscribe {
        align-items: flex-start;
        margin-top: 30px;
    }
    
    .social-icons {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .footer-about, 
    .footer-categories, 
    .footer-links, 
    .footer-blogs {
        width: 100%;
    }
    
    .footer-newsletter {
        flex-direction: column;
    }
    
    .footer-newsletter input,
    .footer-subscribe-btn {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }
}