/* Footer Styles */
.svg-container svg {
    transform: rotate(180deg);
    width: 100%;
    height: auto; /* Ensures responsiveness */
    display: block; /* To prevent any inline rendering issues */
    fill: #1d3020;
}

.footer {
    width: 100%; /* Ensure it spans the entire width */
    background-color: #1d3020;
    color: rgb(255, 255, 255);
    padding: 1rem 0;
    text-align: center;
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Ensure Montserrat font is used */
    z-index: 100; /* Ensure the footer appears above other content */
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 0;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 400;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6600;
}

.footer-social {
    margin-top: 1rem;
}

.social-icon {
    font-size: 2rem;
    margin: 0 0.5rem;
    color: rgb(207, 207, 207);
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff6600;
}

.footer-bottom {
    padding: 0.5rem;
    border-top: 1px solid #444;
    margin-top: 0.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 300;
}

.footer-bottom a{
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover{
    color: #ff6600;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-section {
        margin-bottom: 1rem;
    }
}
