/* /ptc/css/layouts/footer/main.css */

.footer {
    background: var(--light-color);
    color: #555;
    padding: 3rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

/* --- ADD THIS RULE --- */
.footer-banner-container {
    text-align: center; /* Centers inline/inline-block banner content */
    margin-bottom: 2rem; /* Add some space below the banner */
}
/* --- END ADDED RULE --- */

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}