.elementor-53931 .elementor-element.elementor-element-f73b5d4 > .elementor-widget-container{background-image:url("https://promisegroup.com/wp-content/uploads/2025/07/JJ-Farley-The-Original-Soul-Stirrers-Ive-Tried-US-Soul-Gospel-1977_other.png");background-position:center center;background-size:cover;}.elementor-53931 .elementor-element.elementor-element-f73b5d4.bdt-background-overlay-yes:before{background-color:transparent;background-image:linear-gradient(219deg, #A62CF6C4 0%, #0055CB 100%);opacity:0.98;transition:background 0.3s;}.elementor-53931 .elementor-element.elementor-element-a06d1b3 > .elementor-widget-container{margin:0px 0px 120px 0px;}/* Start custom CSS */body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa; /* Light background */
            color: #343a40; /* Dark grey text */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 25px; /* Horizontal padding */
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: #002e6e;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5em;
            text-align: center;
            font-weight: 700;
            color: #002e6e;
            padding-bottom: 20px;
        }

        h2 {
            font-size: 2.8em;
            text-align: center;
            margin-bottom: 1.2em;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: #007bff;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        h3 {
            font-size: 2.2em;
            color: #0056b3;
        }

        h4 {
            font-size: 1.4em;
            color: #007bff;
        }

        p {
            margin-bottom: 1em;
        }

        a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.2s ease-in-out;
        }

        a:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        strong {
            font-weight: 700;
        }

        /* Section Blocks */
        .section-block {
            padding: 40px 40px 80px;
            margin-bottom: 0px; /* Sections are now tighter */
            background-color: #ffffff; /* Default background */
            box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Subtle shadow for depth */
            border-bottom: 1px solid #e9ecef; /* Separator between blocks */
            transition: background-color 0.3s ease;
        }

        .section-block:last-child {
            border-bottom: none;
        }

        /* Hero Section */
        .hero-section {
            background: transparent;
            color: #ffffff;
            padding: 100px 0;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before { /* Subtle background pattern/overlay */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .hero-section .subtitle {
            font-size: 1.5em;
            max-width: 800px;
            margin: 30px auto 0;
            font-weight: 300;
            opacity: 0.9;
        }

        /* Intro Block */
        .intro-block {
            background-color: #f0f8ff; /* Very light blue */
            border-left: 6px solid #007bff;
            padding-left: 50px; /* More padding due to border */
            margin-top: 0px; /* Overlap with hero for smooth transition */
            position: relative;
            z-index: 1;
            }

        .intro-block .content-wrapper {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        /* Benefits Block (with columns) */
        .benefits-block {
            background-color: #ffffff;
        }

        .benefits-block h2 {
            margin-bottom: 40px;
        }

        .column-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
            justify-content: center;
        }

        .column-left, .column-right {
            flex: 1;
            min-width: 300px;
        }

        .column-left {
            padding-right: 20px;
        }

        .styled-list {
            list-style: none; /* Remove default bullet */
            padding: 0px;
            margin: 0px;
        }

        .styled-list li {
            padding: 10px 10px 10px 60px;
            position: relative;
            margin-bottom: 16px;
            font-size: 1.1em;
            background-color: #f7f9fc;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            
        }

        .styled-list li::before {
            content: '✔️'; /* Checkmark icon */
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #28a745; /* Green checkmark */
            font-size: 1.2em;
            padding-left: 16px;
            padding-right: 10px;
        }

        .image-card {
            background-color: #f7f9fc;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            padding-bottom: 15px;
        }

        .image-card img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px 12px 0 0; /* Rounded top corners */
            transition: transform 0.3s ease;
        }

        .image-card:hover img {
            transform: scale(1.03);
        }

        .image-card .image-caption {
            padding: 15px;
            font-size: 0.95em;
            color: #6c757d;
            font-style: italic;
            text-align: center;
        }

        .cta-text {
            text-align: center;
            font-size: 1.2em;
            font-weight: 600;
            margin-top: 50px;
            color: #0056b3;
        }

        /* Featured Block (two-column features) */
        .featured-block {
            background-color: #e6f7ff; /* Lighter blue for featured content */
            border-top: 1px solid #d1ecf1;
            border-bottom: 1px solid #d1ecf1;
        }

        .feature-card-wrapper {
            display: flex;
            flex-direction: column; /* Default stack */
            gap: 40px;
        }

        .feature-card {
            display: flex;
            flex-wrap: wrap; /* Allows image and content to wrap */
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .feature-card.reverse-layout {
            flex-direction: row-reverse; /* Swap order for the second card */
        }

        .feature-card .card-content {
            flex: 2;
            padding: 40px;
            min-width: 350px;
        }

        .feature-card .card-image {
            flex: 1;
            min-width: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f8ff;
        }

        .feature-card .card-image img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .info-box {
            background-color: #d1ecf1; /* Info blue */
            border-left: 5px solid #0056b3;
            padding: 20px;
            margin-top: 25px;
            border-radius: 8px;
            font-size: 0.95em;
            line-height: 1.5;
        }

        .info-box h4 {
            margin-top: 0;
            color: #004085;
        }

        /* Neutral Block */
        .neutral-block {
            background-color: #fefefe;
        }

        /* Scenario Block */
        .scenario-block {
            background-color: #f0f2f5; /* Slightly darker background */
        }

        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .scenario-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 30px;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            text-align: center;
        }

        .scenario-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        .scenario-card h4 {
            color: #007bff;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        /* Important Alert Block */
        .important-alert-block {
            background-color: #fff3cd; /* Warm yellow for alerts */
            border-left: 6px solid #ffc107;
            padding-left: 50px;
        }

        .alert-box {
            background-color: #fff9e6; /* Lighter yellow inside box */
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .alert-box h3 {
            color: #856404;
            font-size: 2.5em;
            margin-top: 0;
            border-bottom: 2px solid #ffc107;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }

        .highlight-warning {
            font-size: 1.3em;
            font-weight: 600;
            color: #dc3545; /* Red for crucial warning text */
            background-color: #fde8e9; /* Very light red background */
            padding: 10px 15px;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .call-to-action-box {
            background-color: #28a745; /* Green for main CTA */
            color: #ffffff;
            padding: 25px 30px;
            border-radius: 10px;
            text-align: center;
            font-size: 1.5em;
            font-weight: 700;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .call-to-action-box:hover {
            background-color: #218838;
            transform: translateY(-5px);
        }

        .call-to-action-box p {
            margin: 0;
        }

        /* Final CTA Block */
        .final-cta-block {
            background-color: #eaf6ff; /* Light blue */
            text-align: center;
            padding: 100px 0;
        }

        .final-cta-block h2 {
            color: #004085;
        }

        .final-cta-block p {
            font-size: 1.2em;
            max-width: 1100px;
            margin: 20px auto 40px;
            color: #555;
        }

        .primary-button {
            background-color: #007bff;
            color: white;
            padding: 8px 40px;
            border: none;
            border-radius: 50px; /* Pill shape */
            font-size: 1.4em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .primary-button:hover {
            background-color: #0056b3;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8em;
            }
            h2 {
                font-size: 2.2em;
            }
            h3 {
                font-size: 1.8em;
            }
            .hero-section {
                padding: 80px 0;
            }
            .intro-block {
                padding-left: 25px;
                margin-top: -30px;
            }
            .column-layout, .feature-card {
                flex-direction: column;
                gap: 30px;
            }
            .column-left, .column-right, .feature-card .card-content, .feature-card .card-image {
                min-width: unset;
                flex: auto;
            }
            .feature-card.reverse-layout {
                flex-direction: column; /* Revert to default for mobile */
            }
            .feature-card .card-image {
                padding-top: 20px;
            }
            .alert-box {
                padding: 30px;
            }
            .alert-box h3 {
                font-size: 2em;
            }
            .highlight-warning {
                font-size: 1.1em;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2em;
            }
            h2 {
                font-size: 1.8em;
            }
            .hero-section {
                padding: 60px 0;
            }
            .section-block {
                padding: 60px 0;
            }
            .container {
                padding: 0 15px;
            }
            .info-box, .alert-box {
                padding: 20px;
            }
            .styled-list li {
                padding-left: 25px;
            }
            .call-to-action-box {
                font-size: 1.2em;
                padding: 20px 25px;
            }
            .primary-button {
                font-size: 1.2em;
                padding: 15px 30px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            .hero-section .subtitle {
                font-size: 1.1em;
            }
            .section-block {
                padding: 40px 0;
            }
            .intro-block {
                padding-left: 15px;
            }
            .feature-card .card-content {
                padding: 25px;
            }
            .alert-box h3 {
                font-size: 1.6em;
            }
            .highlight-warning {
                font-size: 1em;
            }
        }/* End custom CSS */