
        body {
            background-color: #f4f5fa;
            font-family: 'Segoe UI', sans-serif;
            background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
        }

        .hero-bg {
            background: linear-gradient(to bottom right, #1e1b4b, #312e81);
            border-radius: 0 0 0rem 0rem;
            padding: 6rem 2rem 4rem;
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        /* @media (max-width: 768px) {
            .hero-bg {
                padding-top: 4rem;
                padding-bottom: 2rem;
            }
        } */

        .hero-bg h1 {
            font-size: 3rem;
            line-height: 1.2;
        }

        .hero-bg p {
            font-size: 1rem;
            color: #beb9b9;
        }

        /* Original section-card - we will mostly override this for features */
        .section-card {
            background-color: #fffee0;
            border-radius: 1.25rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s;
        }

        .section-card:hover {
            transform: translateY(-4px);
        }

        .purple-btn {
            background-color: #8c52ff;
            transition: transform 0.2s;
        }

        .purple-btn:hover {
            background-color: #7b46e0;
            transform: scale(1.05);
        }

        .abstract-bg {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle at 30% 30%, #d1b3ff 0%, transparent 70%);
            opacity: 0.4;
            top: -100px;
            left: -100px;
            z-index: 0;
        }

        @keyframes slideUp {
            0% {
                opacity: 0;
                transform: translateY(100%);
            }

            30% {
                opacity: 1;
                transform: translateY(0);
            }

            70% {
                opacity: 1;
                transform: translateY(0);
            }

            100% {
                opacity: 0;
                transform: translateY(-100%);
            }
        }

        .animate-slide-up {
            animation: slideUp 2s ease-in-out;
        }

        /* New CSS for Feature Section and Cards (inspired by Ghala.tz) */
        .features-section-custom {
            padding: 60px 20px;
            background-color: #f9f9f9;
            text-align: center;
        }

        .features-header-custom {
            margin-bottom: 50px;
        }

        .features-tag-custom {
            display: inline-block;
            padding: 5px 15px;
            background-color: #f0e6ff;
            /* Light purple for Rooble */
            color: #8c52ff;
            /* Rooble's primary purple */
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .features-header-custom h2 {
            font-size: 2.5em;
            color: #333;
            margin: 0;
        }

        .features-header-custom .highlight-purple {
            color: #8c52ff;
            /* Rooble's primary purple */
        }

        .feature-cards-grid {
            display: grid;
            /* Use CSS Grid for robust layout */
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            /* Responsive grid */
            gap: 30px;
            /* Space between cards */
            justify-content: center;
            /* Center cards horizontally */
            max-width: 1200px;
            /* Max width for the container */
            margin: 0 auto;
            /* Center the container itself */
        }

        .feature-card-custom {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            /* Soft shadow */
            padding: 30px;
            text-align: left;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease-in-out;
            /* Smooth hover */
        }

        .feature-card-custom:hover {
            transform: translateY(-5px);
            /* Lift card on hover */
        }

        .feature-icon-wrapper-custom {
            margin-bottom: 20px;
            width: 60px;
            height: 60px;
            background-color: #f0e6ff;
            /* Light purple background for the icon */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .feature-icon-custom {
            font-size: 35px;
            /* Size of the Font Awesome icon */
            color: #8c52ff;
            /* Rooble's primary purple for icons */
        }

        .feature-card-custom h3 {
            font-size: 1.8em;
            color: #333;
            margin-top: 0;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .feature-card-custom p {
            font-size: 1.1em;
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
            /* No margin bottom if it's the last element */
            flex-grow: 1;
            /* Allows description to take up available space */
        }

        /* NEW CSS for "Who is it for?" section */
        .who-is-it-for-section {
            padding: 80px 20px;
            background-color:#7c46e088;
            /* White background */
        }

        .who-is-it-for-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column; /* Default to column for mobile */
            align-items: center;
            gap: 50px; /* Space between text and image */
        }

        .who-is-it-for-content {
            flex: 1; /* Allows text content to grow */
            max-width: 600px; /* Limit text width */
            text-align: left;
        }

        .who-is-it-for-content h2 {
            font-size: 2.5em;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: bold;
        }

        .who-is-it-for-content p {
            font-size: 1.1em;
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .audience-list {
            list-style: none; /* Remove default list style */
            padding-left: 0;
            margin: 0;
            position: relative; /* For the vertical line */
        }

        .audience-list li {
            font-size: 1.2em;
            color: #333;
            font-weight: 600;
            margin-bottom: 20px;
            padding-left: 30px; /* Space for the line and dot */
            position: relative;
        }

        .audience-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px; /* Width of the dot */
            height: 10px; /* Height of the dot */
            background-color: #8c52ff; /* Rooble purple dot */
            border-radius: 50%;
            z-index: 1; /* Ensure dot is above line */
        }

        .audience-list::after {
            content: '';
            position: absolute;
            left: 4px; /* Align with center of dot */
            top: 10px; /* Start below the first dot */
            bottom: 10px; /* End above the last dot */
            width: 2px; /* Thickness of the line */
            background-color: #e0e0e0; /* Light gray line */
        }

        .who-is-it-for-image-wrapper {
            flex: 1;
            background-color: #8c52ff73;
            max-width: 550px; /* Limit image width */
            border-radius: 12px;
            overflow: hidden; /* Ensure image respects border-radius */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow */
            position: relative; /* For any subtle background effect if needed */
        }

        .who-is-it-for-image-wrapper img {
            width: 100%;
            height: auto;
            display: block; /* Remove extra space below image */
            object-fit: cover;
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 992px) {
            .who-is-it-for-container {
                flex-direction: row; /* Side-by-side on larger screens */
                justify-content: space-between;
                align-items: flex-start; /* Align items to the top */
            }
            .who-is-it-for-content {
                padding-right: 30px; /* Add some space between text and image */
            }
        }

        @media (max-width: 991px) {
            .who-is-it-for-content,
            .who-is-it-for-image-wrapper {
                max-width: 100%; /* Take full width on smaller screens */
            }
            .who-is-it-for-section {
                padding: 50px 15px;
            }
            .who-is-it-for-content h2 {
                font-size: 2em;
                text-align: center; /* Center heading on mobile */
            }
            .who-is-it-for-content p {
                text-align: center; /* Center paragraph on mobile */
            }
            .audience-list {
                padding-left: 15px; /* Adjust padding for list on mobile */
            }
        }

        @media (max-width: 576px) {
            .who-is-it-for-section {
                padding: 40px 10px;
            }
            .who-is-it-for-content h2 {
                font-size: 1.8em;
            }
            .who-is-it-for-content p {
                font-size: 1em;
            }
            .audience-list li {
                font-size: 1.1em;
                margin-bottom: 15px;
            }
        }

        /* Existing Media Queries (adjust if needed for overall consistency) */
        @media (max-width: 992px) {
            .feature-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                /* Adjust min-width */
            }

            .feature-card-custom {
                max-width: 90%;
                /* Adjust max-width for better fit on tablets */
                padding: 25px;
                margin: 0 auto;
                /* Center individual cards when stacked */
            }

            .features-header-custom h2 {
                font-size: 2em;
            }
        }

        @media (max-width: 576px) {
            .features-section-custom {
                padding: 40px 15px;
            }

            .feature-card-custom {
                padding: 20px;
            }

            .feature-card-custom h3 {
                font-size: 1.5em;
            }

            .feature-card-custom p {
                font-size: 1em;
            }
        }
