.site-footer {
    background-color: #3CA33A; 
    padding: 10px;

    color: #000;
    margin: 0;
    width: 100%;

}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  
}

.footer-logo-container {
    flex: 1;
    text-align: center;
}

.footer-logo {
    max-width: 650px;
	border-radius: 15px;
}


.footer-contact-info {
    flex: 1;
    text-align: center;
    font-size: 1.25rem;
}

.footer-contact-info p {
 
    align-items: center;
    margin: 10px 0;
}

.footer-contact-info p i {
    margin-right: 10px;
}

.footer-contact-info a {
    color: #000;
    text-decoration: none;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}


.footer-social-media {
    gap: 20px;
	justify-content: center;
	display: flex;
    margin-top: 20px;
 
}


.footer-social-icon.facebook {
    background-color: #3b5998; 
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.footer-social-icon.facebook:hover {
    background-color: #2d4373;
}

.footer-social-icon.instagram {
    background-color: #e1306c; 
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.footer-social-icon.instagram:hover {
    background-color: #b02858;
}

.footer-social-icon.wciagnijto {
    background-color: #009606; 
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.footer-social-icon.wciagnijto:hover {
    background-color: #03ad09;
}



.footer-bottom {
    background-color: #000;
    color: #fff;
    display: flex;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px; 
    max-width: 100%; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    flex: 1;
    text-align: center;
    color: white;
    padding: 10px;
}

.footer-bottom-logo {
    max-width: 50px;
    border-radius: 50%; 
}

.footer-bottom-right {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding: 10px 20px; 
        border-radius: 15px;
    }

    .footer-bottom-left,
    .footer-bottom-right,
    .footer-bottom-center {
        flex: 1;
        text-align: center;
    }

    .footer-bottom-logo {
        max-width: 40px; 
		display: none;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column; 
        padding: 10px 15px;
        border-radius: 10px;
    }

    .footer-bottom-left,
    .footer-bottom-right,
    .footer-bottom-center {
        margin-bottom: 10px; 
        text-align: center;
    }

    .footer-bottom-logo {
        max-width: 35px; 
    }
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
	float:right;
    display: flex;
    gap: 15px;
}

.footer-links li {
    float: left; 
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer-links li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-info {
        text-align: center;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
	

    .footer-bottom-right {
        margin-top: 10px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-links li {
        float: none;
    }
}

.footer-contact-form {
    flex: 1;
    max-width: 300px;
    margin: 0 auto;
}

.footer-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 30px; 
    border: 1px solid #ccc;
    text-align: center; 
    font-size: 1rem;
}

.footer-contact-form input[type="submit"] {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-contact-form input[type="submit"]:hover {
    background-color: #333;
}