    /* Clean CSS with simple container system */
    :root {
        /* SECTION-SPECIFIC VARIABLES */
        --full-one-blog-primary: #fbc430;
        --full-one-blog-heading-color: #383455;
        --full-one-blog-text-color: #000000;
        --full-one-blog-white: #ffffff;
        --full-one-blog-overlay: rgba(0, 0, 0, 0.6);

        /* Fonts */
        --full-one-blog-body-font: "Inter", sans-serif;
        --full-one-blog-heading-font: "Montserrat", sans-serif;

        /* Container variables */
        --container-max-width: 1200px;
        --container-padding-left: 15px;
        --container-padding-right: 15px;
    }

    /* Reset & Base Styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--full-one-blog-body-font);
        color: var(--full-one-blog-text-color);
        background-color: var(--full-one-blog-white);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    p {
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Container System */
    .container {
        max-width: 1200px;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* --- Hero Section --- */
    .blog-hero {
        position: relative;
        width: 100%;
        height: 400px;
        /* Fixed height for hero as per design */
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url("../images/hero-certi.png");
        /* Adjusted path */
        background-size: cover;
        background-position: center;
        text-align: center;
    }

    /* Overlay */
    .blog-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--full-one-blog-overlay);
        z-index: 1;
    }

    .blog-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .blog-hero h1 {
        font-family: var(--full-one-blog-heading-font);
        font-weight: 600;
        font-size: 50px;
        line-height: 1.22;
        color: var(--full-one-blog-primary);
        text-transform: uppercase;
    }

    .blog-hero p {
        font-family: var(--full-one-blog-body-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        color: var(--full-one-blog-white);
    }

    /* --- Single Blog Content Section --- */
    .single-blog-section {
        padding: 80px 0;
        background-color: var(--full-one-blog-white);
    }

    .blog-article {
        max-width: 970px;
        /* Constrained width for readability */
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        /* Spacing between major blocks */
    }

    /* Article Header */
    .article-header {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .article-header h1 {
        font-family: var(--full-one-blog-heading-font);
        font-weight: 600;
        font-size: 36px;
        line-height: 1.22;
        color: var(--full-one-blog-heading-color);
    }

    .article-excerpt {
        font-family: var(--full-one-blog-body-font);
        font-weight: 400;
        font-size: 18px;
        line-height: 1.5;
        color: #555;
    }

    /* Article Image */
    .article-image {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .article-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Article Body */
    .article-content {
        line-height: 1.6;
    }

    .article-content p {
        font-family: var(--full-one-blog-body-font);
        font-weight: 400;
        font-size: 18px;
        line-height: 1.6;
        color: var(--full-one-blog-text-color);
        margin-bottom: 24px;
        /* Space between paragraphs */
    }

    .article-content ul,
    .article-content ol {
        margin-bottom: 24px;
        padding-left: 20px;
    }

    .article-content li {
        margin-bottom: 10px;
    }

    .article-content h1,
    .article-content h2,
    .article-content h3,
    .article-content h4 {
        margin-top: 30px;
        margin-bottom: 15px;
        color: var(--full-one-blog-heading-color);
    }

    .article-content img {
        margin-bottom: 24px;
        border-radius: 8px;
    }

    /* --- Responsive Design --- */
    @media (max-width: 991px) {
        .blog-hero {
            height: auto;
            min-height: 300px;
            padding: 50px 0;
        }

        .blog-hero h1 {
            font-size: 36px;
        }

        .blog-hero p {
            font-size: 15px;
        }

        .single-blog-section {
            padding: 60px 0;
        }

        .blog-article {
            gap: 35px;
        }

        .article-header h1 {
            font-size: 30px;
        }

        .article-excerpt {
            font-size: 16px;
        }

        .article-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .article-content h1,
        .article-content h2,
        .article-content h3 {
            margin-top: 25px;
            margin-bottom: 12px;
        }
    }

    @media (max-width: 767px) {
        .blog-hero {
            min-height: auto;
            padding: 45px 0;
        }

        .blog-hero h1 {
            font-size: 28px;
        }

        .blog-hero p {
            font-size: 14px;
        }

        .single-blog-section {
            padding: 40px 0;
        }

        .blog-article {
            gap: 28px;
        }

        .article-header {
            gap: 15px;
        }

        .article-header h1 {
            font-size: 24px;
        }

        .article-excerpt {
            font-size: 15px;
        }

        .article-image {
            border-radius: 10px;
        }

        .article-content p {
            font-size: 15px;
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 18px;
            padding-left: 18px;
        }

        .article-content li {
            margin-bottom: 8px;
            font-size: 15px;
        }

        .article-content img {
            margin-bottom: 18px;
            border-radius: 6px;
        }
    }

    /* --- CTA SECTION --- */
    .cta-section {
        background-color: var(--full-one-blog-primary);
        padding: 50px 0;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 80px;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-section h2 {
        font-family: var(--full-one-blog-heading-font);
        font-weight: 600;
        font-size: 30px;
        color: #101010;
        margin-bottom: 18px;
    }

    .cta-section p {
        font-family: var(--full-one-blog-body-font);
        font-size: 16px;
        color: #323232;
        margin-bottom: 34px;
        max-width: 800px;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--full-one-blog-white);
        color: #101010;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 18px;
        padding: 12px 26px;
        border-radius: 10px;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
    }

    /* Decorative blurred circles for CTA */
    .cta-section::before,
    .cta-section::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: #ef8407;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
    }

    .cta-section::before {
        right: -50px;
        top: -50px;
        left: auto;
        transform: none;
    }

    .cta-section::after {
        left: -50px;
        bottom: -50px;
        top: auto;
        right: auto;
        transform: none;
    }