/* Footer Styles */
footer {
    background-color: #171c35;
    color: #b0a1f9;
    padding: 60px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
    background-color: #1f2541; /* Slightly darker background for the sections */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #b0a1f9;
}

.footer-section p, .footer-section ul li {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #b0a1f9;
}

.footer-section.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #b0a1f9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        min-width: 100%;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
