:root {
            --primary-color: #4a6cf7;
            --secondary-color: #6c757d;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        .page-header {
            padding: 80px 0 40px;
            background-color: #f8f9fa;
            margin-bottom: 50px;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: var(--secondary-color);
        }

        .pricing-section {
            padding: 60px 0;
        }

        .pricing-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary-color);
            transform: translateY(-10px);
        }

        .pricing-card.featured:hover {
            transform: translateY(-15px);
        }

        .pricing-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--primary-color);
            color: #fff;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-header {
            padding: 30px;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            text-align: center;
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--secondary-color);
        }

        .pricing-period {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        .pricing-body {
            padding: 30px;
        }

        .pricing-features {
            list-style: none;
            padding-left: 0;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .pricing-features li.disabled {
            color: var(--secondary-color);
        }

        .pricing-features li.disabled i {
            color: #ccc;
        }

        .pricing-footer {
            padding: 30px;
            background-color: #f8f9fa;
            text-align: center;
        }

        .btn-pricing {
            display: block;
            width: 100%;
            padding: 12px 20px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #3a5bd9;
            border-color: #3a5bd9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        }

        .btn-outline-primary {
            background-color: transparent;
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .faq-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .faq-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--dark-color);
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .accordion-button {
            font-weight: 600;
            background-color: #fff;
            color: var(--dark-color);
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: #fff;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .cta-section {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: #fff;
            text-align: center;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-light {
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer {
            background-color: var(--dark-color);
            color: #fff;
            padding: 50px 0 20px;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-bottom: 0.75rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #fff;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .social-link {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        @media (max-width: 991px) {
            .page-title {
                font-size: 2rem;
            }

            .pricing-price {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767px) {
            .page-header {
                padding: 60px 0 30px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .pricing-price {
                font-size: 2rem;
            }
        }