﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


footer {
    background-color: #212A58;
    color: white;
    padding: 40px 20px;
    line-height: 1.6;
    margin-top:250px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

    .footer-section h2::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        /*background-color: #4CAF50;*/
        background-color: #C8217E;
    }

.footer-section p {
    margin-bottom: 20px;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 10px;
    }

        .footer-section ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-section ul li a:hover {
                color: #4CAF50;
            }

.contact-info {
    margin-top: 10px;
}

    .contact-info p {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .contact-info i {
        margin-right: 10px;
        color: #4CAF50;
    }

.divider {
    height: 1px;
    background-color: #444;
    margin: 30px 0;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #bbb;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
