@media (max-width: 768px) {
    .pclayout {
        display: none;
    }
    .mobilelayout {
        display: block;
    }
    .mobile-footer {
        background: #2f5b45;
        color: #ffffff;
        padding: 2rem 1.5rem;
        font-family: system-ui, sans-serif;
    }
    .mobile-footer h3 {
        display: flex;
        justify-content: center;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .mobile-footer ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.8rem 0;
    }
    .mobile-footer li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }
    .mobile-footer a {
        color: #ffffff;
        text-decoration: none;
    }
    .mobile-footer a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .footer-social a {
        font-size: 1.4rem;
    }
    .footer-divider {
        height: 1px;
        background: rgba(255,255,255,0.25);
        margin: 2rem 0 1.2rem;
    }
    .footer-copy {
        text-align: center;
        font-size: 0.85rem;
        opacity: 0.85;
    }
}
@media (min-width: 768px) {
    .pclayout {
        display: block;
    }
    .mobilelayout {
        display: none;
    }
    .mobile-footer {
        display: none;
    }
}