:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #2563eb;
            --light: #f8fafc;
            --dark: #0f172a;
            --text: #334155;
            --text-light: #64748b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
            margin-top: 10px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .btn-outline {
            background-color: var(--light);
            color: var(--primary);
            border: 2px solid var(--light);
        }
        
        .btn-outline:hover {
            background-color: transparent;
            color: white;
            border: 2px solid var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 80px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            max-width: 700px;
            margin: 15px auto 0;
            color: var(--text-light);
        }


         /* pricing Page Specific Styles */
        .pricing-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 180px 0 100px;
            text-align: center;
            color: white;
        }
        
        .pricing-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb a:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: -15px;
        }
        
        .breadcrumb a:hover {
            color: var(--secondary);
        }

        
        /* Pricing Section */
        .pricing {
            padding: 60px 0 100px;
            background-color: var(--light);
        }
        
        .pricing-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #ddd;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-tab {
            padding: 12px 25px;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-light);
            position: relative;
            transition: all 0.3s;
        }
        
        .pricing-tab.active {
            color: var(--primary);
        }
        
        .pricing-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: white;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--secondary);
        }
        
        .pricing-card.popular::before {
            content: 'Popular';
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: 600;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .price {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-light);
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            list-style: none;
            color: var(--text-light);
            position: relative;
            padding-left: 25px;
            text-align: left;
        }
        
        .pricing-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
        }
        
        .pricing-features li.disabled {
            color: #ccc;
        }
        
        .pricing-features li.disabled::before {
            content: '\f00d';
            color: #ccc;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            background-color: white;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f9f9f9;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }
        
        .faq-answer.active {
            padding: 20px 25px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: var(--text-light);
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(rgb(30, 59, 138), rgb(30, 59, 138));
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .section-title h2 {
                font-size: 32px;
            }
            
            .price {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
             .pricing-hero {
                padding: 150px 0 80px;
            }
            
            .pricing-hero h1 {
                font-size: 36px;
            }

            .pricing-tabs {
                flex-direction: column;
                align-items: center;
                border-bottom: none;
            }
            
            .pricing-tab {
                border-bottom: 1px solid #ddd;
                width: 100%;
                text-align: center;
            }
            
            .pricing-tab.active::after {
                display: none;
            }
            
            .pricing-card.popular::before {
                top: 10px;
                right: -35px;
                padding: 3px 35px;
                font-size: 11px;
            }
        }
        
        @media (max-width: 576px) {
            .pricing-hero h1 {
                font-size: 32px;
            }
            .section-title h2 {
                font-size: 28px;
            }
            
            .price {
                font-size: 36px;
            }
            
            .cta h2 {
                font-size: 30px;
            }
        }