
    /* 1. Section & Container */
    .blu-centered-heading-section {
        background-color: #ffffff;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blu-centered-heading-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* 2. Content Styling */
    .blu-centered-heading-content {
        max-width: 1024px; /* Corresponds to max-w-5xl */
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 16px; /* Corresponds to space-y-4 */
    }

    /* 3. Typography */
    .blu-centered-heading-title {
        font-family: 'Inter', sans-serif;
        font-size: 36px; /* Corresponds to text-4xl */
        font-weight: 500;
        color: #111827; /* Corresponds to text-gray-900 */
        line-height: 1.2;
        letter-spacing: -0.04em;
        margin: 0;
    }

    .blu-centered-heading-description {
        font-size: 16px; /* Corresponds to text-base */
        color: #374151; /* Corresponds to text-gray-700 */
        line-height: 1.5; /* Adjusted for better readability */
        max-width: 896px; /* Corresponds to max-w-4xl */
        margin-left: auto;
        margin-right: auto;
    }

    /* 4. Responsive Adjustments */
    @media (min-width: 640px) { /* sm */
         .blu-centered-heading-description {
            font-size: 18px; /* Corresponds to sm:text-lg */
        }
    }

    @media (min-width: 768px) { /* md */
        .blu-centered-heading-section {
            padding-top: 64px;
            padding-bottom: 64px;
        }
         .blu-centered-heading-content {
            gap: 24px; /* Corresponds to md:space-y-6 */
        }
        .blu-centered-heading-title {
            font-size: 48px; /* Corresponds to md:text-5xl */
        }
        .blu-centered-heading-description {
            font-size: 20px; /* Corresponds to md:text-xl */
        }
    }

    @media (min-width: 1024px) { /* lg */
         .blu-centered-heading-title {
            font-size: 60px; /* Corresponds to lg:text-6xl */
        }
    }