/* Footer Styles */

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    margin-top: auto;
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-sections {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Company Information Section */
.company-info h3 {
    color: #16a34a;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.company-info p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #cccccc;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-info strong {
    color: #ffffff;
}

/* Footer Section Headings */
.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    border-bottom: 2px solid #16a34a;
    padding-bottom: 8px;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #16a34a;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #444444;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    color: #999999;
    font-size: 14px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444444;
    color: #cccccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #16a34a;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-sections {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 30px;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-info h3 {
        font-size: 20px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 0 20px;
    }
    
    .company-info h3 {
        font-size: 18px;
    }
    
    .footer-section h4 {
        font-size: 15px;
    }
    
    .footer-section a,
    .company-info p,
    .contact-info p {
        font-size: 13px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-section a,
    .social-link {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .site-footer {
        background: white !important;
        color: black !important;
    }
    
    .social-links {
        display: none;
    }
}