    /* CUSTOM BLOG LAYOUT STYLES MIGRATED FROM PREVIOUS DESIGN */
    .layout-wrapper {
        display: flex;
        gap: 50px;
        margin-top: 40px; /* Controlled spacing instead of <br> tags */
        margin-bottom: 60px;
        align-items: flex-start;
    }

    .article-content {
        flex: 1;
        min-width: 0;
    }

    .article-title {
        font-size: 40px;
        line-height: 1.2;
        color: #111111;
        margin-bottom: 25px;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .post-body {
        font-size: 17px;
        color: #333333;
        line-height: 1.7;
    }

    .post-body p {
        margin-bottom: 20px;
    }

    .post-body h2 {
        font-size: 28px;
        color: #111111;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .post-body h3 {
        font-size: 22px;
        color: #111111;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .post-body ul, .post-body ol {
        margin-bottom: 25px;
        padding-left: 25px;
    }

    .post-body li {
        margin-bottom: 12px;
    }

    .post-body ol li {
        margin-bottom: 30px;
    }

    .post-body ol li p {
        margin-bottom: 15px;
    }

    /* Enhanced image styling for better UX */
    .post-body img {
        border-radius: 8px;
        margin: 20px 0 30px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        width: 100%;
        height: auto;
        display: block;
    }

    .sidebar {
        width: 350px; /* Adjusted width for a more proportional layout */
        flex-shrink: 0;
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        top: 130px; /* Adjusted downward to ensure it clears the website's top menu */
        align-self: flex-start;
        z-index: 10;
    }

    .sticky-widget {
        width: 100%;
        background-color: #ffffff;
        padding: 25px 20px; /* Reduced padding for a more compact form */
        border-radius: 8px;
        text-align: center;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        /* Safeguard: Allows form to be scrollable if screen is extremely short */
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }

    .widget-title {
        font-size: 20px; /* Scaled down slightly */
        color: #2b82b9;
        margin-bottom: 5px;
        font-weight: 800;
        line-height: 1.2;
    }

    .widget-desc {
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 15px; /* Reduced gap before form */
        line-height: 1.4;
    }

    .consultation-form {
        display: flex;
        flex-direction: column;
        gap: 12px; /* Tighter spacing between inputs to save vertical room */
    }

    .form-input {
        width: 100%;
        padding: 10px 12px; /* Reduced internal padding to shrink height */
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-size: 14px; /* Slightly smaller text for inputs */
        font-family: 'Inter', sans-serif;
        background-color: white;
        color: #333333;
    }

    .form-input::placeholder {
        color: #888888;
    }

    .form-input:focus {
        outline: none;
        border-color: #2b82b9;
        box-shadow: 0 0 0 2px rgba(43, 130, 185, 0.1);
    }

    select.form-input {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        cursor: pointer;
        color: #333333;
    }

    select.form-input:invalid, select.form-input option[value=""] {
        color: #777777;
    }

    .btn-submit {
        background-color: #2b82b9;
        color: white;
        border: none;
        padding: 12px; /* Compact button padding */
        font-size: 16px; 
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s;
        margin-top: 4px;
    }

    .btn-submit:hover {
        background-color: #206894;
    }

    .btn-submit:disabled {
        background-color: #999999;
        cursor: not-allowed;
    }

    /* Tablet Responsive Styles */
    @media (max-width: 992px) {
        .layout-wrapper {
            flex-direction: column;
            gap: 30px;
        }
        .sidebar {
            width: 100%;
            margin-top: 10px;
            position: static; /* Removes sticky on tablet/mobile */
        }
        .sticky-widget {
            max-height: none; /* Let it grow naturally on mobile */
            overflow-y: visible;
        }
        .article-title {
            font-size: 34px;
        }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        .article-title {
            font-size: 28px;
            margin-bottom: 15px;
        }
        .post-body h2 {
            font-size: 24px;
            margin-top: 30px;
        }
        .post-body h3 {
            font-size: 20px;
            margin-top: 25px;
        }
        .post-body {
            font-size: 16px;
        }
        .post-body img {
            margin: 15px 0 20px 0;
        }
    }