.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Feature Split (About/Visit) */
.vuv-feature-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}
.vuv-feature-split > div {
    flex: 1;
}
.vuv-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1.8;
}
@media (min-width: 768px) {
    .vuv-feature-split {
        flex-direction: row;
        gap: 60px;
    }
}

/* Page Header */
.vuv-page-header {
    text-align: center;
    padding: 60px 0 40px;
}
.vuv-page-header .page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-maroon);
    margin-bottom: 10px;
}
.vuv-page-header p {
    font-size: 1.2rem;
    color: var(--color-charcoal);
}
.vuv-page-trust-strip {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid var(--color-soft-sand);
    text-align: center;
    gap: 20px;
}
.vuv-page-trust-strip h3 {
    font-family: var(--font-heading);
    color: var(--color-maroon);
    margin: 0;
}
@media (min-width: 768px) {
    .vuv-page-trust-strip {
        flex-direction: row;
        gap: 0;
    }
}
/* Accordion */
.vuv-faq-list details {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-soft-sand);
    padding-bottom: 20px;
}
.vuv-faq-list summary {
    font-weight: 500;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-charcoal);
    outline: none;
    margin-bottom: 10px;
}
.vuv-faq-list p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}
