.elementor-4725 .elementor-element.elementor-element-48043e7{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-edb2c8b */:root {
            --background-dark: #1a1a1a; /* Slightly softer black */
            --background-medium: #2c2c2c;
            --text-light: #f0f0f0;
            --text-medium: #b0b0b0;
            --accent-red: #f43334;
            --card-background: #252525;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        /* No header/footer styling */
        header, footer {
            display: none;
        }

        .we-container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 15px; /* Consistent padding */
        }

        .we-section {
            padding: 60px 0;
            border-bottom: 1px solid var(--background-medium); /* Subtle separator */
        }

        .we-section:last-child {
            border-bottom: none;
        }

        .we-section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            font-weight: 600;
            color: var(--text-light);
        }

        .we-section-title span {
            color: var(--accent-red);
        }

        /* --- Hero Section --- */
        .we-hero {
            background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.95)), url('https://images.unsplash.com/photo-1593784991941-a997180ebd61?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            min-height: 85vh; /* More immersive */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 5px solid var(--accent-red);
        }

        .we-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .we-hero-content h1 .highlight {
            color: var(--accent-red);
            display: block; /* Make it stand out more */
        }

        .we-hero-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            color: var(--text-medium);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .we-cta-button {
            background-color: var(--accent-red);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px; /* Softer edges */
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: inline-block; /* Needed for padding and margin */
            box-shadow: 0 4px 15px rgba(244, 51, 52, 0.3);
        }

        .we-cta-button i { /* Style for icon inside button */
            margin-right: 8px;
        }

        .we-cta-button:hover {
            background-color: #d12b2c; /* Darker red on hover */
            transform: translateY(-3px);
        }

        /* --- Trust Bar / Quick Features --- */
        .we-trust-bar {
            background-color: var(--background-medium);
            padding: 25px 0;
        }

        .we-trust-grid {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            text-align: center;
        }

        .we-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-medium);
        }

        .we-trust-item i {
            color: var(--accent-red);
            font-size: 1.5rem;
        }

        /* --- Benefits Section --- */
        .we-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .we-benefit-card {
            background-color: var(--card-background);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid var(--accent-red);
        }

        .we-benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .we-benefit-card i {
            font-size: 2.5rem;
            color: var(--accent-red);
            margin-bottom: 15px;
        }

        .we-benefit-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .we-benefit-card p {
            font-size: 0.95rem;
            color: var(--text-medium);
        }

        /* --- How It Works Section --- */
        .we-how-it-works {
             background-color: var(--background-medium); /* Alternate background */
        }

        .we-steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
            text-align: center;
        }

        .we-step-card {
            position: relative;
        }

        .we-step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            background-color: var(--accent-red);
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(244, 51, 52, 0.3);
        }

        .we-step-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .we-step-card p {
            font-size: 0.95rem;
            color: var(--text-medium);
        }

         /* Add connecting lines (optional visual flair) */
        .we-step-card:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 25px; /* Align with center of number circle */
            left: calc(50% + 50px); /* Start after the step */
            width: calc(100% - 100px); /* Span to the next step */
            height: 2px;
            background-color: var(--accent-red);
            opacity: 0.3;
        }

         /* --- Channel Highlights --- */
        .we-channels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            text-align: center;
        }
        .we-channel-highlight {
            background-color: var(--card-background);
            padding: 25px 15px;
            border-radius: 8px;
            transition: transform 0.2s ease;
        }
        .we-channel-highlight:hover {
             transform: scale(1.05);
        }
        .we-channel-highlight i {
            font-size: 2.2rem;
            color: var(--accent-red);
            margin-bottom: 12px;
        }
         .we-channel-highlight h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
         }
         .we-channel-highlight p {
            font-size: 0.9rem;
            color: var(--text-medium);
         }


        /* --- Pricing Section --- */
        /* Style the container, but NOT the shortcode content itself */
        .we-pricing-section .we-container {
            text-align: center; /* Center the title */
        }
        /* Add some space around the shortcode */
        .we-pricing-shortcode-wrapper {
            margin-top: 40px;
            /* Add any specific wrapper styles if needed, but avoid styling inner elements */
        }
        /* IMPORTANT: Avoid general table, div, p, etc. styles here that might affect the shortcode */


        /* --- Testimonials --- */
        .we-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .we-testimonial-card {
            background-color: var(--card-background);
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-red);
            position: relative; /* For quote icon */
        }
        .we-testimonial-card::before { /* Quote icon */
            content: "\f10d"; /* Font Awesome quote-left */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 2rem;
            color: var(--accent-red);
            opacity: 0.2;
        }
        .we-testimonial-card p {
            margin-bottom: 15px;
            font-style: italic;
            color: var(--text-medium);
            padding-left: 10px; /* Space from quote icon */
        }
        .we-testimonial-author {
            font-weight: 600;
            color: var(--text-light);
            text-align: right;
        }

        /* --- FAQ Section --- */
        .we-faq-item {
            background-color: var(--card-background);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden; /* Ensure content clip */
        }
        .we-faq-question {
            padding: 18px 25px;
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--background-medium); /* Slightly different for question */
            transition: background-color 0.3s ease;
        }
        .we-faq-question:hover {
            background-color: #3a3a3a;
        }
        .we-faq-question i { /* +/- icon */
            transition: transform 0.3s ease;
            color: var(--accent-red);
        }
        .we-faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            color: var(--text-medium);
            font-size: 0.95rem;
        }
        .we-faq-item.active .we-faq-answer {
            max-height: 300px; /* Adjust as needed */
            padding: 20px 25px;
        }
        .we-faq-item.active .we-faq-question i {
            transform: rotate(45deg); /* Change plus to cross */
        }


        /* --- Final CTA --- */
        .we-final-cta {
            background-color: var(--accent-red);
            text-align: center;
            color: white; /* Override default text color */
        }
        .we-final-cta .we-container {
             padding-top: 80px; /* More space for emphasis */
             padding-bottom: 80px;
        }
        .we-final-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: white;
        }
        .we-final-cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        .we-final-cta .we-cta-button {
            background-color: white;
            color: var(--accent-red); /* Inverted colors */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .we-final-cta .we-cta-button:hover {
             background-color: #f0f0f0; /* Slightly off-white hover */
             transform: translateY(-3px);
        }


        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .we-hero-content h1 { font-size: 3rem; }
            .we-section-title { font-size: 2.2rem; }
            .we-final-cta h2 { font-size: 2.4rem; }
        }

        @media (max-width: 768px) {
            .we-container { width: 95%; }
            .we-hero-content h1 { font-size: 2.5rem; }
            .we-hero-content p { font-size: 1.1rem; }
            .we-cta-button { padding: 12px 30px; font-size: 1rem;}
            .we-trust-grid { justify-content: center; }
            .we-trust-item { flex-basis: 45%; justify-content: center; }
            .we-section-title { font-size: 2rem; }
            .we-final-cta h2 { font-size: 2rem; }

             /* Remove connecting lines on mobile */
            .we-step-card::after {
                 display: none;
            }
        }

        @media (max-width: 576px) {
            .we-hero { min-height: 75vh; }
            .we-hero-content h1 { font-size: 2rem; }
            .we-hero-content p { font-size: 1rem; }
            .we-section-title { font-size: 1.8rem; }
            .we-trust-item { flex-basis: 100%; }
            .we-benefits-grid { grid-template-columns: 1fr; } /* Stack benefits */
            .we-steps-grid { grid-template-columns: 1fr; } /* Stack steps */
            .we-testimonials-grid { grid-template-columns: 1fr; } /* Stack testimonials */
            .we-faq-question { font-size: 1rem; padding: 15px 20px;}
            .we-faq-answer { font-size: 0.9rem; }
            .we-final-cta h2 { font-size: 1.8rem; }
            .we-final-cta p { font-size: 1rem; }
            .we-channels-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px; }
        }

        /* --- Accessibility --- */
        .we-cta-button:focus,
        .we-faq-question:focus {
            outline: 2px solid var(--accent-red);
            outline-offset: 2px;
        }

        /* --- Simple Fade-in Animation --- */
        .we-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .we-section.visible {
            opacity: 1;
            transform: translateY(0);
        }/* End custom CSS */
/* Start custom CSS */.page-title-area{
    display: none!important;
}/* End custom CSS */