/* Enhanced Footer Styles */
.blog-footer {
    border-top: 3px solid #dedc00;
    padding: 70px 0 50px;
    margin-top: 60px;
    background: linear-gradient(to right, rgba(222, 220, 0, 0.03), rgba(25, 97, 172, 0.04));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1961ac;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(25, 97, 172, 0.1);
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links a {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    color: #4e4e57;
    text-decoration: none;
    border-bottom: none;
    transition: all 0.2s ease;
    padding: 10px 12px;
    margin: 2px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-links a::before {
    content: "→";
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
    color: #1961ac;
    font-weight: 600;
}

.footer-links a:hover {
    color: #1961ac;
    background-color: rgba(25, 97, 172, 0.05);
    padding-left: 16px;
    border-bottom: none;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-cta {
    text-align: center;
}

.footer-cta .apply-now-btn {
    margin: 20px 0 20px;
    display: inline-flex;
    min-width: 180px;
    justify-content: center;
}

.footer-cta-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: #757575;
    margin: 15px 0 0 0;
    line-height: 1.6;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Override blog-style.css footer styles */
.blog-footer .container {
    max-width: 1300px !important;
    padding: 0 20px !important;
}

/* Mobile padding for footer container */
@media (max-width: 768px) {
    .blog-footer .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .blog-footer .container {
        padding: 0 15px !important;
    }
}

.blog-footer a {
    border-bottom: none;
}

/* Apply Now Button Styles - Scoped to footer only */
.blog-footer .apply-now-btn {
    background-color: #dedc00;
    color: white;
    padding: 10px 20px 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
}

.blog-footer .apply-now-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-right: 25px;
    color: #1961ac;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-links {
        gap: 10px;
    }
}

