/* Footer Styles */
footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-contact h4,
.footer-podcast h4 {
    margin-bottom: 1.5rem;
    color: #F5A623;
}

.footer-about h3 {
    margin-bottom: 1rem;
}

.footer-about p {
    color: #aaa;
    line-height: 1.8;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-contact a:hover {
    color: #F5A623;
}

.footer-contact i {
    width: 20px;
    font-size: 1.1rem;
    color: #F5A623;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: #1B2A49;
}

.social-icons a i {
    color: #fff !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover i {
    color: white !important;
}

.podcast-links h5 {
    color: #F5A623;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.podcast-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.podcast-links a:hover {
    color: #F5A623;
}

.podcast-links i {
    width: 20px;
    font-size: 1.1rem;
    color: #F5A623;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: #F5A623;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #F5A623;
}

/* Footer responsive styles */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-contact a,
    .podcast-links a {
        font-size: 0.9rem;
    }
}