.elementor-15317 .elementor-element.elementor-element-7ab5a95{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS */:root {
    --ousl-red: #b11217;
    --ousl-dark-red: #8c0f13;
    --ousl-yellow: #f4c300;
    --ousl-orange: #f36f21;
    --ousl-black-700: #1a1a1a; /* dark gray/near black */
    --black-500: #2c2c2c;
    --ousl-black: #000000; /* pure black for footer-bottom */
}

.ousl-footer {
    color: #ffffff;
   
    font-family: Arial, sans-serif;
}

/* Top part with logo - light background */
.footer-top {
    text-align: center;
    padding: 40px 20px 20px;
    background: #ffffff; /* white for logo visibility */
    color: #000000; /* optional: dark text for headings */
}

.footer-logo {
    width: 500px;
    max-width: 100%; /* responsive */
    margin-bottom: 15px;
}

.footer-top h5 {
    font-size: 14px;
    color: var(--ousl-red); /* match logo color */
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Conferences left, Contact right */
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 10%;
    background: var(--ousl-black-700); /* dark footer content */
}

/* Conferences list: 3 columns */
.footer-section.conferences ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}

.footer-section.conferences li {
    margin: 0;
}

.footer-section h4 {
    color: var(--ousl-yellow);
    margin-bottom: 15px;
}

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

.footer-section a:hover {
    color: var(--ousl-yellow);
}

/* Contact section on the right */
.footer-section.contact {
    max-width: 300px;
}

.footer-section.contact p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: var(--ousl-black); /* pure black bottom strip */
    font-size: 13px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section.conferences ul {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }

    .footer-section.contact {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 120px; /* smaller on mobile */
    }
}/* End custom CSS */