﻿/*footer {
    background: unset;
    color: #000;
    width: 100%;
    padding: 40px 0 20px;
    border-top: 1px solid #e9e9e9;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

    .footer-content h3 {
        font-size: 28px;
        font-weight: 600;
        margin: 0;
    }

    .footer-content p {
        font-size: 16px;
        color: dimgray;
        max-width: 600px;
        margin: 10px 0 0;
        line-height: 1.6;
        font-weight: 300;
    }

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width:100%;margin:0 auto;
}

    .footer-bottom p {
        font-size: 14px;
        margin: 5px 0;
    }

        .footer-bottom p a {
            color: #000;
            font-weight: 500;
            text-decoration: none;
        }

            .footer-bottom p a:hover {
                color: #27bcda;
            }

.footer-menu ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

    .footer-menu ul li a {
        color: #000;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-menu ul li a:hover {
            color: #27bcda;
        }*/

/* Responsive */
/*@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu ul {
        justify-content: center;
        margin-top: 10px;
    }
}*/

/* ====== FOOTER BASE ====== */
.f1-youtube-footer-complex {
    background-color: #fff;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #444;
    padding: 60px 40px 40px 40px;
    border-top: 1px solid #e5e5e5;
    max-width: 100%;
    /*box-shadow: 0 -2px 10px rgba(0,0,0,0.03);*/
}

/* ====== LINKS ====== */
.f1-youtube-footer-complex a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.f1-youtube-footer-complex a:hover {
    color: #24a7a0;
}

/* ====== TOP SECTION ====== */
.f1-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto 40px auto;
   /* gap: 30px;*/
    display: flex;
    gap: 20px;
}

/* ====== COMPANY INFO (FIRST COLUMN) ====== */
.company-info {
    flex: 1 1 260px;
    min-width: 240px;
}

.company-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.company-info p {
    margin: 6px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.company-info a {
    color: #24a7a0;
    text-decoration: none;
}
.company-info a:hover {
    text-decoration: underline;
}

/* ====== OTHER COLUMNS ====== */
.f1-footer-column {
    flex: 1 1 170px;
    min-width: 170px;
}

.f1-footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.f1-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f1-footer-column ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

/* ====== BOTTOM SECTION ====== */
.f1-footer-bottom {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /*
    border-top: 1px solid #e5e5e5;*/
    padding-top: 20px;
    font-size: 13px;
    color: #666;
}

.f1-footer-bottom p {
    margin: 0;
}

.f1-footer-bottom select {
    padding: 6px 12px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.f1-footer-bottom select:hover {
    border-color: #24a7a0;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .f1-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .f1-footer-column {
        width: 100%;
    }

    .f1-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


@media (min-width: 768px) and (max-width: 1080px) {

    .f1-footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 850px;
        margin: 0 auto 40px auto;
        /* gap: 30px;*/
        display: flex;
        gap: 20px;
    }
  
    .f1-footer-bottom {
        max-width: 850px;
    }
    }


@media (min-width: 300px) and (max-width: 767px) {
    .f1-footer-column {
        flex:auto;
    }
}