/* Footer Styles */
.site-footer {
    background-color: #f8f8f8;
    padding: 60px 0 30px;
    font-family: 'Arial', sans-serif;
}

.footer-cta {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.footer-cta h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.footer-button:hover {
    background-color: #333;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e1e1e1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: #333;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #000;
}

.copyright {
    color: #999;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .footer-cta h2 {
        font-size: 22px;
    }

    .footer-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}