.porsche-footer {
    background-color: #000000 !important;
    /* Force black output */
    color: #ffffff !important;
    /* Force white text */
    padding: 60px 0;
    font-family: 'Arial Narrow', Arial, 'Heiti SC', SimHei, sans-serif;
}

.porsche-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}



.porsche-footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.porsche-footer__logo-image {
    margin-bottom: 20px;
}

.porsche-footer__logo-image img {
    width: auto;
    display: block;
}

.porsche-footer__copyright {
    font-size: 13px;
    /* Increased from 12px */
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.porsche-footer__copyright span {
    font-weight: 700;
}



.porsche-footer__info {
    display: flex;
    flex-direction: column;
}

.porsche-footer__heading {
    font-size: 16px;
    /* Increased from 12px */
    font-weight: 400;
    text-transform: none;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.porsche-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.porsche-footer__links li {
    margin-bottom: 8px;
}

.porsche-footer__links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    /* Increased from 14px */
    line-height: 1.8;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.porsche-footer__links a:hover {
    opacity: 0.7;
}



.porsche-footer__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.porsche-footer__product-image {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
}

.porsche-footer__product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.porsche-footer__product-text {
    font-size: 12px;
    /* Increased from 11px */
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 5px 0;
}

.porsche-footer__product-link {
    font-size: 13px;
    /* Increased from 12px */
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.porsche-footer__product-link:hover {
    opacity: 0.7;
}



.porsche-footer__contact {
    display: flex;
    flex-direction: column;
}

.porsche-footer__branding {
    font-size: 18px;
    /* Increased from 16px */
    font-weight: 700;
    letter-spacing: 2px;
    margin: 20px 0 25px 0;
    color: #ffffff;
}

.porsche-footer__branding span {
    font-weight: 400;
}

.porsche-footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.porsche-footer__phone {
    font-size: 18px;
    /* Increased from 16px */
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.porsche-footer__phone:hover {
    opacity: 0.7;
}

.porsche-footer__email {
    font-size: 15px;
    /* Increased from 14px */
    color: #ffffff;
    text-decoration: none;
    word-break: break-word;
    transition: opacity 0.3s ease;
}

.porsche-footer__email:hover {
    opacity: 0.7;
}

/* Social Media Icons */
.porsche-footer__social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.porsche-footer__social a {
    color: #ffffff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.porsche-footer__social a:hover {
    opacity: 0.7;
}

.porsche-footer__social svg {
    width: 20px;
    height: 20px;
}




@media (max-width: 1199px) {
    .porsche-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .porsche-footer__product {
        grid-column: 1 / -1;
        order: 4;
    }
}


@media (max-width: 767px) {
    .porsche-footer {
        padding: 40px 0;
    }

    .porsche-footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .porsche-footer__logo,
    .porsche-footer__info,
    .porsche-footer__product,
    .porsche-footer__contact {
        align-items: flex-start;
        text-align: left;
    }

    .porsche-footer__product {
        align-items: center;
        text-align: center;
    }
}

/* Force all links to be white and prevent overrides */
.porsche-footer a,
.porsche-footer a:visited,
.porsche-footer a:active {
    color: #ffffff !important;
}

.porsche-footer a:hover {
    color: #ffffff !important;
    opacity: 0.7;
}