.custom-footer-content {
    background-color: #f8f8f8;
    padding: 40px 20px;
    color: #333;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* Added box-shadow */
}

.custom-footer-content > div {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px; /* Changed from 20px */
}

.custom-footer-content > div > div:last-child {
    flex: 1 1 350px; /* Make the last column wider */
    min-width: 250px; /* Ensure it doesn't shrink too much */
}

.custom-footer-content > div > div {
    flex: 1 1 250px;
    min-width: 200px;
}

.custom-footer-content > div > div:nth-child(2),
.custom-footer-content > div > div:nth-child(3),
.custom-footer-content > div > div:nth-child(4) {
    flex: 1 1 200px;
    min-width: 150px;
}

.custom-footer-content > div > div:nth-child(3),
.custom-footer-content > div > div:nth-child(4) {
    flex: 1 1 150px;
    min-width: 120px;
}


.custom-footer-content img {
    max-width: 150px;
    margin-bottom: 15px;
}

.custom-footer-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.custom-footer-content p.brand-name {
    font-weight: bold;
    font-size: 15px;
}

.custom-footer-content h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #dd3333; /* Updated color */
    margin-top: 10px;
}

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

.custom-footer-content ul li {
    margin-bottom: 8px;
}

.custom-footer-content ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}
.custom-footer-content ul li a:hover {
    color: #dd3333; /* Link color on hover */
}


.custom-footer-content p.social-followers {
    font-size: 14px;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-footer-content > div {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .custom-footer-content > div > div {
        flex: 1 1 100%;
        min-width: unset;
        margin-bottom: 20px;
    }
    .custom-footer-content img {
        margin-left: 0;
        margin-right: 0;
    }
}

.footer-copyright {
    background-color: #dd3333 !important;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.2); /* Added top border */
}

.custom-footer-content .fa {
    margin-right: 8px;
    color: #1f3880; /* Default icon color */
    font-size: 1.1em;
    transition: color 0.3s ease;
}
.custom-footer-content a:hover .fa {
    color: #dd3333; /* Icon color on link hover */
}

.custom-footer-content ul li .fa {
    font-size: 12px; /* Smaller size for chevron icons */
    vertical-align: middle;
}

.social-icons a {
    margin-right: 15px;
    font-size: 30px;
    color: #1f3880;
}

.social-icons a:hover {
    color: #dd3333;
}

.social-icon-img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}
