footer {
    background-color: #2c3e50;
    color: white;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.footer_new_content {
    text-align: left;
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer_new_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.footer_new_logo img {
    width: 150px;
    height: auto;
}

.footer_new_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.footer_new_section {
    margin-bottom: 20px;
}

.footer_new_section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #FFD700;
    padding-bottom: 8px;
}

.footer_new_section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer_new_section ul li {
    margin: 8px 0;
}

.footer_new_section ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer_new_section ul li a:hover {
    color: gold;
}

.footer_new_section ul li i {
    margin-right: 10px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer_new_section ul li a:hover i {
    transform: scale(1.1);
}

.footer_new_social_links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer_new_social_links a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_new_social_links a:hover {
    color: #d40000;
    transform: translateY(-3px);
}

.footer_new_copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #f8f8f8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer_new_copyright p {
    margin: 5px 0;
}

@media (max-width: 576px) {
    footer {
        padding: 30px 15px;
    }

    .footer_new_content {
        flex-direction: column;
        gap: 20px;
    }

    .footer_new_logo {
        margin-bottom: 10px;
        justify-content: center;
    }

    .footer_new_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer_new_section {
        text-align: center;
    }

    .footer_new_section h3 {
        text-align: center;
    }

    .footer_new_section ul li a {
        justify-content: center;
    }

    .footer_new_social_links {
        justify-content: center;
        margin-top: 20px;
    }

    .footer_new_copyright {
        margin-top: 30px;
        font-size: 13px;
        padding-top: 15px;
    }
}