.elementor-2033 .elementor-element.elementor-element-21a6638{--display:flex;}.elementor-2033 .elementor-element.elementor-element-b47438a{width:100%;max-width:100%;}.elementor-2033 .elementor-element.elementor-element-21f95aa{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* --- FAQ PAGE VARIABLES (Purple Theme) --- */
:root {
    --tap-faq-primary: #667eea;   /* Periwinkle */
    --tap-faq-secondary: #764ba2; /* Deep Purple */
    --tap-faq-light: #f8f9fa;     /* Light Gray */
    --tap-faq-border: #e0e0e0;
    --tap-dark: #1a1a1a;
}

/* --- UTILITIES --- */
.tap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
    /* NO FONT FAMILY - Inherits WordPress */
}
.tap-text-center { text-align: center; }
.tap-mb-4 { margin-bottom: 2rem; }

/* --- SEARCH BAR --- */
.tap-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.tap-search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid var(--tap-faq-border);
    border-radius: 8px;
    transition: border-color 0.2s;
    background: white;
}
.tap-search-input:focus {
    outline: none;
    border-color: var(--tap-faq-primary);
}

/* --- CATEGORY TABS (Visual Only) --- */
/* Note: For real filtering, Elementor Tabs widget is best. 
   These are styled as anchor links for jump-links. */
.tap-cat-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.tap-cat-link {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--tap-faq-border);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
}
.tap-cat-link:hover, .tap-cat-link.active {
    background: var(--tap-faq-primary);
    color: white;
    border-color: var(--tap-faq-primary);
}

/* --- FAQ ACCORDION (Native HTML5) --- */
.tap-faq-category {
    max-width: 900px;
    margin: 0 auto 4rem;
}
.tap-cat-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--tap-dark);
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--tap-faq-primary);
}

details.tap-details {
    background: var(--tap-faq-light);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--tap-faq-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

details.tap-details[open] {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

summary.tap-summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--tap-dark);
    list-style: none; /* Hides default triangle */
}

/* Custom Icon */
summary.tap-summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--tap-faq-primary);
    font-weight: bold;
    transition: transform 0.2s;
}

details.tap-details[open] summary.tap-summary::after {
    transform: rotate(45deg);
}

/* Remove default triangle in Webkit */
summary.tap-summary::-webkit-details-marker { display: none; }

.tap-answer {
    padding: 0 2rem 2rem;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid transparent;
}
details.tap-details[open] .tap-answer {
    border-top-color: #f0f0f0;
    padding-top: 1.5rem;
}

.tap-answer ul { margin-left: 20px; margin-bottom: 1rem; }
.tap-answer li { margin-bottom: 0.5rem; }

/* --- BUTTONS --- */
.tap-btn-faq {
    display: inline-block;
    background: white;
    color: var(--tap-faq-primary);
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s;
}
.tap-btn-faq:hover { transform: translateY(-3px); }/* End custom CSS */