: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);
        }

        .feature-section {
            padding: 60px 0;
            margin-bottom: 40px;
        }

        .feature-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 15px;
        }

        .feature-section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .feature-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-radius: 10px;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(74, 108, 247, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--dark-color);
        }

        .feature-desc {
            color: var(--secondary-color);
            font-size: 0.95rem;
        }

        .feature-list {
            list-style: none;
            padding-left: 0;
            margin-top: 1rem;
        }

        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .feature-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .feature-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .feature-image:hover img {
            transform: scale(1.05);
        }

        .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;
            }

            .feature-section-title {
                font-size: 1.5rem;
            }
        }

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

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