.footer {
    background-color: #6A1B9A;
    color: white;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section h3, 
.footer-section h2 {
    margin-bottom: 12px;
    font-weight: bold;
}

.footer-logo {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

/* Contact Icons + Text Inline */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact-item i {
    margin-right: 8px;
    font-size: 1rem;
    color:#F47C20;
}

.contact-item a, 
.contact-item span {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
}

.highlight-link {
    font-weight: bold;
    color: #F47C20;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    background: #F47C20;
    color: #5f68b7;
    padding: 4px 8px;
    border-radius: 5px;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
}
