

        .hero-badge {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            color: white;
            border: 1px solid rgba(255,255,255,0.15);
            transition: 0.3s;
        }

        .hero-badge:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-2px);
        }

        /* ========== MAIN CONTENT WRAPPER ========== */
        .content-wrapper {
            padding: 0 0 40px;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 50px;
            position: relative;
        }

        /* Left Content - Scrollable */
        .main-content {
            background: var(--white);
            border-radius: 32px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }

        /* Right Sidebar - Sticky */
        .sticky-sidebar {
            position: sticky;
            top: 30px;
            align-self: start;
            height: fit-content;
        }

        /* Typography */
        .main-content h2 {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--navy);
            margin: 40px 0 16px 0;
            padding-left: 12px;
            border-left: 4px solid var(--rose);
        }

        .main-content h2:first-of-type {
            margin-top: 0;
        }

        .main-content h3 {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--royal);
            margin: 24px 0 12px;
        }

        .main-content p {
            font-size: 16px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 16px;
        }

        /* Document Grid - New Design */
        .doc-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 24px 0;
        }

        .doc-card {
            background: var(--frost);
            padding: 14px 18px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .doc-card:hover {
            border-color: var(--rose-light);
            transform: translateX(5px);
        }

        .doc-icon {
            width: 36px;
            height: 36px;
            background: var(--rose-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--rose);
            font-size: 16px;
        }

        .doc-text {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        /* Info Alert */
        .alert-card {
            background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
            padding: 24px;
            border-radius: 24px;
            margin: 28px 0;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .alert-icon {
            font-size: 28px;
            color: var(--rose);
        }

        .alert-content h4 {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .alert-content p {
            margin: 0;
            font-size: 14px;
        }

        /* Step Timeline - Vertical Design */
        .step-timeline {
            margin: 30px 0;
        }

        .step-line {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
            position: relative;
        }

        .step-line:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 45px;
            width: 2px;
            height: calc(100% + 4px);
            background: linear-gradient(to bottom, var(--rose), var(--gold));
        }

        .step-circle {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--navy), var(--royal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .step-text {
            flex: 1;
            padding-bottom: 8px;
        }

        .step-text strong {
            display: block;
            color: var(--navy);
            font-size: 16px;
            margin-bottom: 4px;
        }

        .step-text span {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        /* Highlight Box */
        .highlight-card {
            background: linear-gradient(135deg, var(--navy), var(--royal));
            padding: 32px;
            border-radius: 28px;
            text-align: center;
            margin: 32px 0;
        }

        .highlight-card h4 {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .highlight-card p {
            color: rgba(255,255,255,0.9);
            margin: 0;
        }

        /* FAQ - Accordion */
        .faq-accordion {
            margin: 40px 0;
        }

        .faq-acc-item {
            background: var(--frost);
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-question {
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--navy);
            transition: 0.3s;
        }

        .faq-question:hover {
            background: var(--rose-light);
        }

        .faq-arrow {
            color: var(--rose);
            transition: 0.3s;
        }

        .faq-acc-item.active .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: 0.3s ease;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .faq-acc-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 200px;
        }

        /* ========== SIDEBAR STYLES ========== */
        .sidebar-card {
            background: var(--white);
            border-radius: 24px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
            transition: 0.3s;
        }

        .sidebar-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .sidebar-card h3 {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--rose-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cta-call {
            background: linear-gradient(135deg, var(--navy), var(--royal));
            color: white;
            padding: 14px;
            border-radius: 50px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
        }

        .cta-call:hover {
            background: linear-gradient(135deg, var(--rose), var(--gold));
            transform: scale(1.02);
        }

        .cta-wa {
            background: #25D366;
            color: white;
            padding: 14px;
            border-radius: 50px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
        }

        .cta-wa:hover {
            background: #128C7E;
            transform: scale(1.02);
        }

        .fee-table {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .fee-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed var(--silver);
        }

        .fee-label {
            font-size: 14px;
            color: #555;
        }

        .fee-value {
            font-weight: 700;
            color: var(--navy);
        }

        .related-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .related-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--frost);
            border-radius: 14px;
            text-decoration: none;
            color: var(--navy);
            transition: 0.3s;
        }

        .related-link:hover {
            background: var(--rose-light);
            transform: translateX(5px);
        }

        /* Form Styles */
        .quick-form .input-field {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--silver);
            border-radius: 12px;
            margin-bottom: 12px;
            font-family: var(--font-sans);
            transition: 0.3s;
        }

        .quick-form .input-field:focus {
            outline: none;
            border-color: var(--rose);
            box-shadow: 0 0 0 2px var(--rose-light);
        }

        .form-submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--navy), var(--royal));
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .form-submit-btn:hover {
            background: linear-gradient(135deg, var(--rose), var(--gold));
        }

        /* Location List */
        .location-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 12px;
        }

        .location-tag {
            background: var(--frost);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 12px;
            color: var(--navy);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .sticky-sidebar {
                position: static;
            }
            
            .hero-title {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            
            .hero-title {
                font-size: 30px;
            }
            
            .main-content {
                padding: 24px;
            }
            
            .doc-grid {
                grid-template-columns: 1fr;
            }
            
            .main-content h2 {
                font-size: 24px;
            }
            
            .alert-card {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                padding: 0 16px;
            }
            .main-content {
                padding: 20px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }