.custom-footer {
    background-color: #80cbc4 !important; 
    padding: 10px 0;
    border-top: 1px solid #253f25;
}

.footer-container {
    /* max-width: 1200px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    padding-left: 15%;
    padding-right: 15%;
    font-size: 15px;
    /* color: #4a6b4a; */
    flex-wrap: wrap;
    gap: 10px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    /* min-width: 200px; */
}

.footer-left a {
    margin: 0 5px;
    color: #6b6b4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.footer-left i {
    font-size: 15px;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-center a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-right a {
    margin: 0;
}

.contact-btn {
    background-color: #2e7d32;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #1b5e20;
}

.footer-center img {
    width: 32px;
    height: auto;
}

.div-btn {
	color: #6b6b4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-left {
        width: 100%;
        justify-content: center;
        flex: none;
    }

    .footer-center {
        width: 100%;
        justify-content: center;
    }

    .footer-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-btn {
        width: auto;
        text-align: center;
    }
	.div-btn {
        width: auto;
        text-align: center;
	}		
}
