.elementor-198 .elementor-element.elementor-element-3ead155{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-198 .elementor-element.elementor-element-511e6b2{font-family:"Fira Sans", Sans-serif;font-weight:500;color:#FFFFFF;}/* Start custom CSS for text-editor, class: .elementor-element-511e6b2 */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&family=Poppins:wght@400;600;700;900&display=swap');

:root {
    --pistolo-bg-dark: #0a0a0a;
    --pistolo-blue-primary: #0050d5;
    --pistolo-blue-secondary: #0047be;
    --pistolo-blue-dark: #003bb3;
    --pistolo-green-light: #84cc16;
    --pistolo-green-dark: #65a30d;
    --pistolo-yellow: #fbbf24;
    --pistolo-red: #ef4444;
    --pistolo-text: #ffffff;
    --pistolo-text-muted: #bfdbfe;
    --pistolo-card-bg: #003bb3;
    --pistolo-card-border: rgba(255, 255, 255, 0.1);
    --pistolo-radius: 12px;
    --pistolo-font-primary: 'Poppins', sans-serif;
    --pistolo-font-secondary: 'Inter', sans-serif;
    --pistolo-transition: all 0.2s ease;
}

.pistolo-home-container {
    font-family: var(--pistolo-font-secondary);
    line-height: 1.6;
    color: var(--pistolo-text);
    background-color: var(--pistolo-blue-secondary);
    background: radial-gradient(circle at top center, #0056e0 0, #003796 100%);
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Fix for child elements */
.pistolo-home-container *,
.pistolo-home-container *::before,
.pistolo-home-container *::after {
    box-sizing: border-box;
    overflow-wrap: break-word;
}

/* Background Texture */
.pistolo-home-container::before {
    background-image: linear-gradient(#ffffff08 1px, transparent 0), linear-gradient(90deg, #ffffff08 1px, transparent 0);
    background-size: 50px 50px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .3;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.pistolo-home-container>* {
    position: relative;
    z-index: 1;
}

/* Links */
.pistolo-home-container a {
    color: #E3B005;
    text-decoration: underline;
    font-weight: 700;
    transition: var(--pistolo-transition);
}

.pistolo-home-container a:hover {
    color: #ffcc00;
    text-shadow: 0 0 5px rgba(227, 176, 5, 0.5);
}

/* Typography */
.pistolo-title {
    font-family: var(--pistolo-font-primary);
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 4px 4px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    text-transform: uppercase;
    font-style: italic;
}

.pistolo-heading {
    font-family: var(--pistolo-font-primary);
    font-size: 1.8rem;
    color: var(--pistolo-text);
    margin: 60px 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 900;
    text-shadow: 2px 2px 0 #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pistolo-heading i {
    color: var(--pistolo-yellow);
    filter: drop-shadow(2px 2px 0 #000);
}

.pistolo-subheading {
    font-family: var(--pistolo-font-primary);
    font-size: 1.3rem;
    color: var(--pistolo-yellow);
    margin: 25px 0 15px;
    font-weight: 700;
}

.pistolo-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--pistolo-text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Buttons */
.pistolo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: var(--pistolo-font-primary);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0.5px;
    transition: transform .1s, box-shadow .1s;
    cursor: pointer;
    text-decoration: none !important;
    margin: 20px 0;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
}

.pistolo-btn-primary {
    background: linear-gradient(180deg, var(--pistolo-green-light), var(--pistolo-green-dark));
    border: 2px solid #000;
    color: #fff !important;
    font-size: 1.2rem;
    box-shadow: 4px 4px 0 #000;
    text-shadow: 1px 1px 0 #000;
}

.pistolo-btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
}

/* Grids & Cards */
.pistolo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pistolo-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.pistolo-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--pistolo-radius);
    transition: var(--pistolo-transition);
}

.pistolo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.pistolo-card h3 {
    color: #fff;
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Tables */
.pistolo-table-wrapper {
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.pistolo-table {
    width: 100%;
    border-collapse: collapse;
}

.pistolo-table th,
.pistolo-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    vertical-align: top;
}

.pistolo-table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--pistolo-yellow);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pistolo-table td {
    color: var(--pistolo-text-muted);
}

.pistolo-table strong {
    color: #fff;
}

/* Lists */
.pistolo-list {
    padding-left: 20px;
    list-style: none;
}

.pistolo-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    color: var(--pistolo-text-muted);
}

.pistolo-list li::before {
    content: "•";
    color: var(--pistolo-yellow);
    font-weight: 900;
    font-size: 1.2rem;
    position: absolute;
    left: -10px;
    top: -2px;
}

.pistolo-steps-list {
    list-style: none;
    padding: 0;
    counter-reset: pistolo-counter;
}

.pistolo-steps-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    color: var(--pistolo-text-muted);
}

.pistolo-steps-list li::before {
    counter-increment: pistolo-counter;
    content: counter(pistolo-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 30px;
    height: 30px;
    background: var(--pistolo-yellow);
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 800;
}

.pistolo-check-list {
    list-style: none;
    padding: 0;
}

.pistolo-check-list li {
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    color: var(--pistolo-text-muted);
}

.pistolo-check-list i {
    color: #84cc16;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Accordion (FAQ) */
.pistolo-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pistolo-accordion-item {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.pistolo-accordion-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
}

.pistolo-accordion-header i {
    transition: transform 0.3s;
}

.pistolo-accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--pistolo-text-muted);
}

.pistolo-accordion-item.active .pistolo-accordion-content {
    max-height: 1200px; /* Increased for long FAQ lists */
    padding-bottom: 15px;
}

.pistolo-accordion-item.active .pistolo-accordion-header i {
    transform: rotate(180deg);
}

/* CTA & Note Box */
.pistolo-cta-box {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.pistolo-note {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--pistolo-yellow);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .pistolo-title { font-size: 1.8rem; }
    .pistolo-heading { font-size: 1.5rem; flex-direction: column; align-items: flex-start; }
    .pistolo-grid, .pistolo-grid-3 { grid-template-columns: 1fr; }

    /* Mobile Table Transformation */
    .pistolo-table thead { display: none; }
    .pistolo-table tr { 
        display: flex; 
        flex-direction: column; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
        margin-bottom: 15px; 
        padding-bottom: 5px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }
    .pistolo-table td { 
        display: flex; 
        justify-content: space-between; 
        padding: 10px 15px; 
        text-align: right; 
        border: none;
    }
    .pistolo-table td::before { 
        content: attr(data-label); 
        font-weight: 700; 
        color: var(--pistolo-yellow); 
        text-align: left; 
        text-transform: uppercase; 
        font-size: 0.8rem;
        margin-right: 15px;
    }
}/* End custom CSS */