<style>
        :root {
            --bs-primary-rgb: 71, 85, 105; /* Slate 600 */
            --bs-secondary-rgb: 100, 116, 139; /* Slate 500 */
            --bs-link-color-rgb: 51, 65, 85; /* Slate 700 */
            --bs-link-hover-color-rgb: 15, 23, 42; /* Slate 900 */
            --bs-body-font-family: 'Inter', sans-serif;
            --bs-body-color: #334155; /* Slate 700 */
        }

        body {
            background-color: #f8fafc; /* Slate 50 */
        }

        .btn-primary {
            --bs-btn-bg: #475569; /* Slate 600 */
            --bs-btn-border-color: #475569;
            --bs-btn-hover-bg: #334155; /* Slate 700 */
            --bs-btn-hover-border-color: #334155;
            --bs-btn-active-bg: #1e293b; /* Slate 800 */
            --bs-btn-active-border-color: #1e293b;
        }
        
        .btn-outline-primary {
            --bs-btn-color: #475569;
            --bs-btn-border-color: #475569;
            --bs-btn-hover-color: #fff;
            --bs-btn-hover-bg: #475569;
            --bs-btn-hover-border-color: #475569;
        }

        .navbar {
            transition: background-color 0.3s ease-in-out;
        }
        
        .navbar-scrolled {
            background-color: rgba(255, 255, 255, 0.9) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }

        .navbar-brand {
            font-weight: 700;
            color: #1e293b;
        }
        
        .hero-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }

        .hero-section .badge {
            background-color: #e2e8f0;
            color: #475569;
            border: 1px solid #cbd5e1;
        }

        .hero-section h1 {
            font-weight: 800;
            color: #0f172a; /* Slate 900 */
        }
        
        .hero-image-container {
            position: relative;
            padding: 1.5rem;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
            border: 1px solid #e2e8f0; /* Slate 200 */
        }

        .section-title {
            font-weight: 700;
            color: #1e293b; /* Slate 800 */
            /* font-family: Georgia, 'Times New Roman', Times, serif;
            font-size: 38px; */
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #64748b; /* Slate 500 */
        }

        .feature-heading{
            font-weight: 900;
            color: #1e293b; /* Slate 800 */
            font-family: Georgia, 'Times New Roman', Times, serif;
            font-size: 36px;
        }
        .feature-title{
            font-family:'Poppins' ;
            font-size: 26px;
        }
        
        .feature-icon {
            display: flex;
            align-items: baseline;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: #f1f5f9; /* Slate 100 */
            color: #475569; /* Slate 600 */
            border-radius: 0.75rem;
            font-size: 2.0rem;
            margin-bottom: 1rem;
            padding-right: 3%;
        }

        .feature-card {
            background-color: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 2rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
        }
        
        .pricing-card {
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .pricing-card:hover, .pricing-card.featured {
            transform: scale(1.03);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            border-color: #475569;
        }
        
        .pricing-card.featured .card-header {
            background-color: #475569;
            color: #fff;
        }
        
        .testimonial-card {
            background-color: #fff;
            border: 0;
            border-radius: 1rem;
        }
        
        .testimonial-card img {
            width: 60px;
            height: 60px;
            object-fit: cover;
        }

        .faq-accordion .accordion-button {
            font-weight: 600;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background-color: #f1f5f9;
            color: #1e293b;
            box-shadow: none;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
            border-radius: 1.5rem;
        }
        
        footer {
            background-color: #e2e8f0; /* Slate 200 */
        }
        
        .footer-links a {
            color: #475569;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: #1e293b;
        }
        
        .social-icons a {
            color: #475569;
            font-size: 1.5rem;
            transition: color 0.2s ease;
        }
        .social-icons a:hover {
            color: #1e293b;
        }
        .cta-header{
            color:#ffc416!important;
            font-family: 'Georgia';
            font-weight: 700;
        }
        .brand-name{
            font-family: "Science Gothic";
            background: linear-gradient(to right, rgba(255, 245, 111, 0.904) 0%, rgba(255, 108, 108, 0.836) 55%, rgb(80 80 255 / 65%) 45%, rgb(81 81 255 / 90%) 100% 100%);
            filter: blur(0.4px);
            border-radius: 8px;
            padding-left: 1%;
            padding-right: 2%;
            padding-top: 1%!important;
            padding-bottom: 1%!important;
            font-weight: bolder;
        }    
        .bg-form-image {
            background:
                linear-gradient(
                    rgba(231, 255, 255, 0.863),
                    rgba(155, 173, 255, 0.932)
                ),
                url("/static/images/form-image.jpg");
            background-size: contain;
            background-position: center;
            background-repeat: repeat;
            border-radius: 8px;
        }
        .btn.start-journey-button{
            background-color: #00918E;
            color: white;
        }
        .btn.start-journey-button:hover{
            background-color: #160091;
            color: white;
        }
        .faq-section {
            background-image: 
                url("/static/images/origami.jpg");
            background-size:cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 8px;
        }
        .hero-title{
            font-family:Georgia, 'Times New Roman', Times, serif;
        }
</style>