/* Footer Styles */
.wpcf7-form p {
    margin: 0;
    padding: 0;
}
.footer-widgets {
    background-color: #f4f4f1;
    color: #222;
    padding: 60px 0 30px;
    margin-top: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.footer-widgets-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-widget {
    flex: 1 1 25%;
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #333333;
}

/* Widget content styles */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.widget ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #333333;
}


/* Copyright Section */
.site-copyright {
    background-color: #f4f4f1;
    color: #222;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #cdcdcd;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.copyright-text {
    margin: 0;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-navigation a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: #ff5c00;
}

@media (max-width: 767px) {
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .footer-widget {
        flex: 1 1 50%;
    }
}

@media (max-width: 767px) {
    .footer-widget {
        flex: 1 1 100%;
    }
    
    .footer-widgets {
        padding: 40px 0 20px;
    }
}
