﻿:root {
            --primary-blue: #0775CE;
            --light-blue: #E8F4FD;
            --dark-blue: #2C5AA0;
            --orange: #FF8C42;
            --text-dark: #333333;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--light-blue);
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card h5 {
            color: var(--text-dark);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #666;
            font-size: 0.9rem;
        }

        .center-image {
            text-align: center;
            margin: 50px 0;
        }

        .center-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Portfolio Section */
        .portfolio-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 3px 12px rgba(0,0,0,0.03);
            margin-bottom: 30px;
            transition: 0.3s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
        }

        /* .portfolio-image {
            height: 200px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        } */

        .portfolio-content {
            padding: 20px;
        }

        /* Pricing Section */
        .pricing-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .pricing-header {
            background: var(--primary-blue);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .pricing-plans {
            display: flex;
            background: #f8f9fa;
            padding: 20px 0;
            text-align: center;
        }

        .plan-column {
            flex: 1;
            padding: 10px;
        }

        .plan-title {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .plan-free {
            color: var(--primary-blue);
        }

        .plan-basic {
            color: var(--primary-blue);
        }

        .plan-pro {
            color: var(--primary-blue);
        }

        .btn-plan {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .pricing-features {
            padding: 0;
        }

        .feature-row {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }

        .feature-row:last-child {
            border-bottom: none;
        }

        .feature-name {
            flex: 2;
            font-weight: 500;
            color: var(--text-dark);
        }

        .feature-check {
            flex: 1;
            text-align: center;
        }

        .check-icon {
            color: #28a745;
            font-size: 1.2rem;
        }

        .limited-text {
            color: #666;
            font-size: 0.8rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--light-blue);
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h3 {
            color: var(--primary-blue);
            font-weight: bold;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .cta-section p {
            color: #666;
            margin-bottom: 30px;
        }

        /* Footer */
        .footer h6 {
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 8px;
        }

        .footer ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }

        .footer ul li a:hover {
            color: white;
        }

        .contact-info {
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 10px;
            width: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
            
            .pricing-plans {
                flex-direction: column;
            }
            
            .feature-row {
                flex-direction: column;
                text-align: center;
            }
        }