
        .seo-hero {
            background: linear-gradient(135deg, #1b294a 0%, #0d1424 100%);
            color: #ffffff;
            padding: 150px 0 90px 0;
            text-align: center;
            position: relative;
        }
        .seo-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, #e15b26, #1d70b6);
        }
        .seo-hero h1 {
            font-size: 46px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .seo-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.85);
            max-width: 750px;
            margin: 0 auto;
        }
        .seo-section {
            padding: 90px 0;
        }
        .seo-layout-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }
        .seo-txt-side h3 {
            font-size: 32px;
            color: #1b294a;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .seo-txt-side p {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .seo-img-side img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 45px rgba(27, 41, 74, 0.08);
        }
        
        /* TYPES OF SEO GRID */
        .types-seo-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 45px;
        }
        .seo-type-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid rgba(27, 41, 74, 0.06);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .seo-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(27, 41, 74, 0.08);
        }
        .seo-type-card h4 {
            font-size: 22px;
            color: #1b294a;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .seo-type-card h4 i {
            font-size: 24px;
        }
        .seo-type-card p {
            font-size: 15px;
            color: #4a5568;
            line-height: 1.6;
        }
        .icon-orange { color: #e15b26; }
        .icon-blue { color: #1d70b6; }
        
        /* AUDIT LEAD MODULE */
        .audit-wrapper {
            background-color: #f4f8fc;
            padding: 100px 0;
        }
        .audit-frame {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 50px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 25px 60px rgba(27, 41, 74, 0.06);
            overflow: hidden;
        }
        .audit-brand-info {
            background: #1b294a;
            color: #ffffff;
            padding: 55px;
        }
        .audit-brand-info h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .audit-brand-info p {
            color: rgba(255,255,255,0.75);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 35px;
        }
        .audit-check-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 15px;
            font-weight: 600;
        }
        .audit-check-row i {
            color: #f8a529;
            font-size: 18px;
        }
        .audit-form-block {
            padding: 55px;
        }
        .audit-form-block h3 {
            font-size: 24px;
            color: #1b294a;
            margin-bottom: 30px;
        }
        .custom-form-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .span-full-width {
            grid-column: span 2;
        }
        .form-input-wrapper {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-input-wrapper label {
            font-size: 13px;
            font-weight: 700;
            color: #1b294a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .form-input-wrapper input, .form-input-wrapper textarea {
            padding: 12px 16px;
            border: 1px solid rgba(27, 41, 74, 0.15);
            border-radius: 6px;
            font-family: inherit;
            font-size: 14px;
            outline: none;
            background: #ffffff;
        }
        .form-input-wrapper input:focus, .form-input-wrapper textarea:focus {
            border-color: #1d70b6;
        }
        
        @media (max-width: 991px) {
            .seo-layout-grid, .types-seo-container, .audit-frame {
                grid-template-columns: 1fr;
            }
            .span-full-width {
                grid-column: span 1;
            }
            .custom-form-layout {
                grid-template-columns: 1fr;
            }
            .audit-brand-info, .audit-form-block {
                padding: 40px 25px;
            }
        }
   