    /* Targets the container only on the Contact Custom Template */
    .page-template-custom-pagespage-help-center-php .site-content > .container,
    .page-template-custom-pagespage-help-center-php .site-content > .motta-container {
        max-width: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* Remove Motta's default site-content spacing */
    .page-template-custom-pagespage-help-center-php .site-content {
        padding: 0 !important;
        margin: 0 !important;
    }

    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: Chillax;
    }

    body {
        font-family: 'Chillax', sans-serif;
        color: #1a1a1ae0;
    }

    .page-template-custom-pagespage-help-center-php p {
        color: #161A17 !important;
    }

    /* ── Hero ── */
.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
 
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 2px 10px;
    max-width: 1200px;
    width: 100%;
    animation: fadeUp 0.7s ease both;
}
 
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
.hero-faq {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #A87A63;
    margin-bottom: 8px;
}
 
.hero-title {
    font-family: 'Chillax', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0 0 12px;
}
 
.hero-subtitle {
    font-size: 15px;
    color: #3a3a3a;
    margin: 0 0 24px;
    line-height: 1.6;
}
 
 
/* ── Search ── */
.search-wrapper {
    margin: 0 auto;
    max-width: 480px;
    width: 100%;
}
 
.search-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0dcd6;
    border-radius: 10px;
    padding: 0 14px;
    height: 48px;
    gap: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
 
.search-inner:focus-within {
    border-color: #A87A63;
    box-shadow: 0 0 0 3px rgba(168, 122, 99, 0.10);
}
 
.search-icon {
    color: #A87A63;
    flex-shrink: 0;
    opacity: 0.7;
}
 
#myInput {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Chillax', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    padding: 14px 0;
}
 
#myInput::placeholder {
    color: #b5a99e;
}
 
.search-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: #b5a99e;
    font-size: 13px;
    padding: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s ease, color 0.2s ease;
}
 
.search-clear.visible {
    opacity: 1;
}
 
.search-clear:hover {
    color: #A87A63;
    background-color: transparent !important;
}
 
.search-count {
    text-align: center;
    font-size: 13px;
    color: #A87A63;
    margin-top: 10px;
    min-height: 20px;
    font-family: 'Chillax', sans-serif;
    transition: opacity 0.3s ease;
}
 
 
/* ── Tag Pills ── */
.common-inquiries {
    padding: 0 24px 24px;
    transition: opacity 0.3s ease, max-height 0.4s ease;
    overflow: hidden;
}
 
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
 
.hero-tag {
    display: inline-block;
    padding: 7px 18px;
    background: #fff;
    border: 1px solid #e8e0d8;
    border-radius: 12px;
    font-family: 'Chillax', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b5f52;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
 
.hero-tag:hover {
    background: #FAF8F7;
    color: #A07660;
}

.hero-tag.active {
    background-color: #A07660;
    opacity: 0.9;
    color: #FAF8F7;
}
 
 
/* ── FAQ Section ── */
.faq-section {
    padding: 8px 0 40px;
    max-width: 900px;
    margin: 0 auto;
}
 
.faq-container {
    display: flex;
    flex-direction: column;
}
 
.faq-item {
    border-bottom: 1px solid #e8e0d8;
    transition: background-color 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
}
 
.faq-item:first-child {
    border-top: 1px solid #e8e0d8;
}
 
.faq-item:hover {
    background-color: rgba(168, 122, 99, 0.03);
}
 
.faq-item.hidden {
    display: none;
}
 
.faq-item.fading-out {
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
}
 
.faq-question {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Chillax', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #2e2a27;
    line-height: 1.4;
    transition: color 0.25s ease;
    outline: none;
}
 
.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: #A87A63;
    margin-left: 20px;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}
 
.faq-item.active .faq-question,
.faq-question:hover,
.faq-question:focus,
.faq-question:active {
    color: #A87A63;
    background-color: transparent !important;
    box-shadow: none !important;
}
 
.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}
 
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
 
.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
}
 
.faq-answer p {
    padding: 0 30px 26px;
    font-size: 15px;
    line-height: 1.85;
    color: #7a6a5f;
    max-width: 90%;
}
 
 
/* ── Keyword highlight ── */
.search-highlight {
    background-color: rgba(168, 122, 99, 0.15);
    border-radius: 3px;
    padding: 0 2px;
    color: #7a4a30;
}
 
 
/* ── No results ── */
#no-results-message {
    text-align: center;
    padding: 28px 20px;
    color: #b5a99e;
    font-family: 'Chillax', sans-serif;
    font-size: 15px;
}
 
#no-results-message button {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: 1px solid #e0dcd6;
    border-radius: 50px;
    padding: 7px 18px;
    font-family: 'Chillax', sans-serif;
    font-size: 13px;
    color: #A87A63;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
 
#no-results-message button:hover {
    border-color: #A87A63;
    background: rgba(168, 122, 99, 0.06);
}
 
 
/* ── Support CTA ── */
.support-section {
    text-align: center;
    padding: 50px 40px;
    max-width: 900px;
    margin: 20px auto 60px;
    background: #FAF8F7;
    border-radius: 16px;
}
 
.support-section h2 {
    font-family: 'Chillax', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: #2e2a27;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 12px;
}
 
.support-section p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #7a6a5f;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 24px;
}
 
.btn-support {
    display: inline-block;
    background-color: #2e2a27;
    color: #fff;
    font-family: 'Chillax', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: background-color 0.25s ease, transform 0.15s ease;
    box-shadow: 0 4px 20px rgba(155, 78, 56, 0.20);
}
 
.btn-support:hover {
    background-color: #A87A63;
    transform: translateY(-1px);
}
 
.btn-support:active {
    transform: translateY(0);
}
 
 
/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-content {
        padding: 48px 20px 20px;
    }
 
    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
 
    .faq-answer p {
        padding: 0 20px 20px;
        max-width: 100%;
    }
 
    .support-section {
        padding: 36px 20px;
        margin: 20px 16px 40px;
    }
}