.site-footer {
    background-color: var(--primary-green);
    color: white;
    padding-top: 60px;
}

.footer-main {
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 20px;
}

.footer-heading.help-heading {
    margin-top: 30px;
}

.footer-subscribe-form {
    display: flex;
    border: 1px solid white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 350px;
}

.footer-subscribe-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.footer-subscribe-form input:focus {
    outline: none;
}

.footer-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-subscribe-form button {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-subscribe-form button:hover {
    background-color: #eee;
}

.footer-cta-button {
    display: inline-block;
    background-color: var(--light-yellow);
    color: var(--text-dark);
    border: 1px solid var(--light-yellow);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s;
}

.footer-cta-button:hover {
    transform: scale(1.05);
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links-column a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.links-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact-actions {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
}

.contact-social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-send-message-btn:hover {
    background-color: white;
    color: var(--primary-green);
}

.mobile-only {
    display: none;
}

.pc-only {
    display: block;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    overflow: hidden;
}

.footer-brand img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.sub-footer {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 0.8rem;
}

.sub-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.copyright-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.copyright-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-media-links {
    display: flex;
    gap: 15px;
}

.social-media-links a {
    color: white;
    opacity: 0.8;
}

.social-media-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 992px) {
    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-accordion details {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-accordion summary {
        padding: 20px 0;
        font-size: 1.2rem;
        font-weight: bold;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
    }

    .footer-accordion summary::after {
        content: '▼';
        font-size: 0.8rem;
        transition: transform 0.3s;
    }

    .footer-accordion details[open] summary::after {
        transform: rotate(180deg);
    }

    .footer-accordion ul {
        padding: 0 0 20px;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-accordion a {
        color: white;
        text-decoration: none;
        opacity: 0.9;
    }

    .sub-footer-content {
        flex-direction: column;
        gap: 15px;
    }
}