html {
    background-color: #1a1a1a;
}

body {
    background-color: #fff;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content, main {
    background-color: #fff;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 7rem 1rem 2rem 1rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}


.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin: 0;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
}

.company-details p {
    font-size: 16px;
    color: #999;
    line-height: 1.6;
    margin: 2px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0 auto;
    text-align: center;
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid #333;
    margin-bottom: 1.5rem;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column {
        align-items: flex-start !important;
        text-align: left !important;
        width: 100%;
    }

    .footer-column h4 {
        width: fit-content;
        margin-left: 0;
        margin-right: auto;
    }

    .footer-company {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .company-details p {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start !important;
    }

    .anpc-container {
        align-items: flex-start !important;
    }
}

.anpc-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.anpc-container img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    padding: 2px;
}

.anpc-container img:hover {
    opacity: 0.9;
}

.company-details a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.company-details a:hover {
    color: #d4af37;
}

.footer-company {
    align-items: flex-start;
    text-align: left;
}

.footer-company .contact-item {
    width: 100%;
}


