   
        :root {
            --primary-color: #002147;
            --secondary-color: #ef6a23;
            --light-primary: rgba(0, 33, 71, 0.1);
            --light-secondary: rgba(239, 106, 35, 0.1);
        }
        
    
        
        .rp-589776-navbar {
            background-color: var(--primary-color);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .rp-589776-logo {
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .rp-589776-logo span {
            color: var(--secondary-color);
        }
        
        .rp-589776-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #003a7a 100%);
            color: white;
/*             border-radius: 0 0 50px 50px; */
            padding: 70px 0;
        }
        
        .rp-589776-hero h1 {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .rp-589776-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .rp-589776-highlight {
            color: var(--secondary-color);
        }
        
        .rp-589776-tool-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: -50px;
            padding: 30px;
            position: relative;
            z-index: 10;
        }
        
        /* Step Cards Styling */
        .rp-589776-step-card {
            border-radius: 12px;
            transition: all 0.3s;
            overflow: hidden;
            border-bottom: 3px solid transparent;
        }
        
        .rp-589776-step-card:hover {
            transform: translateY(-5px);
            border-bottom: 3px solid var(--secondary-color);
        }
        
        .rp-589776-step-number {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
        }
        
        /* Mode Cards Styling */
        .rp-589776-mode-card {
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .rp-589776-mode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        
        .rp-589776-mode-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-primary);
            color: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .rp-589776-btn-outline-primary {
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .rp-589776-btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .rp-589776-btn-outline-secondary {
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .rp-589776-btn-outline-secondary:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* Info Box Styling */
        .rp-589776-info-box {
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            border-left: 4px solid var(--primary-color);
        }
        
        /* Reason Cards Styling */
        .rp-589776-reason-card {
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%;
            transition: all 0.3s;
        }
        
        .rp-589776-reason-card:hover {
            transform: translateY(-5px);
        }
        
        .rp-589776-reason-card i {
            font-size: 24px;
        }
        
        /* Importance Cards Styling */
        .rp-589776-importance-card {
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .rp-589776-importance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        
        .rp-589776-importance-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-secondary);
            color: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .rp-589776-textarea {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 15px;
            min-height: 200px;
            resize: none;
            transition: all 0.3s;
        }
        
        .rp-589776-textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 33, 71, 0.25);
        }
        
        .rp-589776-btn-primary {
            background-color: var(--primary-color);
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .rp-589776-btn-primary:hover {
            background-color: #001a38;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 33, 71, 0.3);
        }
        
        .rp-589776-btn-secondary {
            background-color: var(--secondary-color);
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .rp-589776-btn-secondary:hover {
            background-color: #d55a1c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(239, 106, 35, 0.3);
        }
        
        .rp-589776-feature-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            height: 100%;
            transition: all 0.3s;
            border-bottom: 4px solid transparent;
        }
        
        .rp-589776-feature-card:hover {
            transform: translateY(-5px);
            border-bottom: 4px solid var(--secondary-color);
        }
        
        .rp-589776-feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--light-primary);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
        }
        
        .rp-589776-benefits-section {
/*             background-color: var(--light-primary); */
            padding: 80px 0;
            border-radius: 50px 50px 0 0;
        }
        
        .rp-589776-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .rp-589776-check-icon {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 20px;
            min-width: 25px;
        }
        
        .rp-589776-footer {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0;
        }
        
        .rp-589776-footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .rp-589776-footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            margin-bottom: 10px;
        }
        
        .rp-589776-footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .rp-589776-social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .rp-589776-social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .rp-589776-style-selector {
            background-color: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 10px 15px;
        }
        
        .rp-589776-word-count {
            background-color: var(--light-primary);
            border-radius: 30px;
            padding: 5px 15px;
            font-size: 0.9rem;
            display: inline-block;
        }
        
        /* Feature Box Styling */
        .rp-589776-feature-box {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
/*             border-left: 4px solid var(--primary-color); */
        }
        
        .rp-589776-feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .rp-589776-feature-icon-large {
            width: 70px;
            height: 70px;
            min-width: 70px;
            background-color: var(--light-primary);
            color: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        
        /* User Card Styling */
        .rp-589776-user-card {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s;
            border-bottom: 4px solid transparent;
        }
        
        .rp-589776-user-card:hover {
            transform: translateY(-5px);
            border-bottom: 4px solid var(--secondary-color);
        }
        
        .rp-589776-user-card.try-now {
            background: linear-gradient(135deg, var(--primary-color) 0%, #003a7a 100%);
            color: white;
        }
        
        .rp-589776-user-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light-primary);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
        }
        
        /* How To Card Styling */
        .rp-589776-how-to-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s;
        }
        
        .rp-589776-how-to-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .rp-589776-how-to-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
        }
        
        .rp-589776-how-to-steps {
            padding: 20px;
        }
        
        .rp-589776-how-to-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .rp-589776-how-to-step:last-child {
            margin-bottom: 0;
        }
        
        .rp-589776-step-dot {
            width: 30px;
            height: 30px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 15px;
            min-width: 30px;
        }
        
        /* Format Card Styling */
        .rp-589776-format-card {
            background-color: white;
            border-radius: 12px;
            padding: 20px 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .rp-589776-format-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .rp-589776-format-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-primary);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto;
        }
        
        /* Accordion Styling */
        .rp-589776-accordion {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .rp-589776-accordion-item {
            background-color: white;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .rp-589776-accordion-item:last-child {
            border-bottom: none;
        }
        
        .rp-589776-accordion-button {
            width: 100%;
            text-align: left;
            background-color: white;
            color: var(--primary-color);
            padding: 20px;
            border: none;
            font-weight: 600;
            position: relative;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .rp-589776-accordion-button:hover {
            background-color: var(--light-primary);
        }
        
        .rp-589776-accordion-button:not(.collapsed) {
            background-color: var(--light-primary);
            color: var(--primary-color);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .rp-589776-accordion-button::after {
            content: "\f107";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s;
        }
        
        .rp-589776-accordion-button:not(.collapsed)::after {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .rp-589776-accordion-body {
            padding: 20px;
            background-color: #f9f9f9;
        }
        
        @media (max-width: 768px) {
            .rp-589776-hero {
                padding: 50px 0;
                border-radius: 0 0 30px 30px;
            }
            
            .rp-589776-tool-container {
                margin-top: -30px;
                padding: 20px;
            }
            
            .rp-589776-benefits-section {
                border-radius: 30px 30px 0 0;
                padding: 50px 0;
            }
        }

/*      sidebar icon    */
           /* Unique CSS selector using number 5634343 */
        .scribbr-sidebar-5634343 {
            --sidebar-width: 60px;
            --sidebar-expanded-width: 350px;
            --transition-speed: 0.3s;
            --border-radius: 8px;
            --header-color: #1e3a8a;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background-color: #f9fafb;
            padding-bottom: 0; /* Ensure there's no extra padding */
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .page-container-5634343 {
            display: flex;
            flex: 1;
            position: relative;
        }
        
        .sidebar-container-5634343 {
            position: relative;
            width: 60px;
            min-width: 60px;
            height: 100%;
            background-color: white;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            display: none; /* Hide by default */
        }
        
        .sidebar-5634343 {
            position: fixed;
            width: 60px;
            height: calc(100% - 200px); /* Adjust height to leave space for footer */
            background-color: #f8f9fa;
            transition: width 0.3s, opacity 0.3s;
            overflow: hidden;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* Only show sidebar on desktop */
        @media (min-width: 992px) {
            .sidebar-container-5634343 {
                display: block;
            }
        }
        
        .sidebar-5634343:hover {
            width: 350px;
        }
        
        .sidebar-hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .sidebar-header-5634343 {
            position: absolute;
            top: 20px;
            padding: 10px;
            width: 100%;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            text-align: center;
            text-decoration: none;
            color: inherit;
        }
        
        .sidebar-5634343:hover .sidebar-header-5634343 {
            opacity: 1;
        }
        
        .sidebar-header-5634343 h5 {
            font-size: 18px;
            margin: 0;
            font-weight: 700;
            color: #1e3a8a;
        }
        
        .sidebar-items-5634343 {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0 5px;
        }
        
        .sidebar-item-5634343 {
            display: flex;
            align-items: center;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }
        
        .sidebar-item-5634343:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        .icon-wrapper-5634343 {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-right: 16px;
            flex-shrink: 0;
        }
        
        .icon-image-5634343 {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        
        .item-text-5634343 {
            white-space: nowrap;
            transition: opacity 0.3s;
            opacity: 0;
        }
        
        .sidebar-5634343:hover .item-text-5634343 {
            opacity: 1;
        }
        
        .item-text-5634343 strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }
        
        .item-text-5634343 small {
            font-size: 12px;
            color: #6c757d;
            display: block;
        }
        
        .text-summarizer-5634343 {
            background-color: #FCF2F8;
        }
        
        .ai-proofreader-5634343 {
            background-color: #F1FCEE;
        }
        
        .plagiarism-checker-5634343 {
            background-color: #FCF5FF;
        }
        
        .proofreading-editing-5634343 {
            background-color: #FFF8EC;
        }
        
        .ai-detector-5634343 {
            background-color: #EFF8FC;
        }
        
        .ai-humanizer-5634343 {
            background-color: #FFF7F2;
        }
        
        .main-content-5634343 {
            flex: 1;
            /*padding: 25px;*/
            width: 100%;
            max-width: 100%;
        }
        
        /* Adjust main content width on desktop */
        @media (min-width: 992px) {
            .main-content-5634343 {
                max-width: calc(100% - 60px);
            }
        }

        /* Footer Styles */
        .footer-5634343 {
            width: 100%;
            background-color: #1e3a8a;
            color: white;
            padding: 40px 0;
            margin-top: auto;
        }

        .footer-content-5634343 {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-column-5634343 {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-column-5634343 h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
            font-weight: 600;
        }

        .footer-column-5634343 ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column-5634343 ul li {
            margin-bottom: 10px;
        }

        .footer-column-5634343 ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }

        .footer-column-5634343 ul li a:hover {
            color: #ffffff;
        }

        .footer-bottom-5634343 {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .social-icons-5634343 {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons-5634343 a {
            color: white;
            font-size: 20px;
            transition: opacity 0.3s;
        }

        .social-icons-5634343 a:hover {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .footer-content-5634343 {
                flex-direction: column;
            }
            
            .footer-column-5634343 {
                width: 100%;
                margin-bottom: 30px;
            }
        }