/* Global Styles */
        :root {
            --primary-color: #0d1117;
            --secondary-color: #161b22;
            --accent-color: #d56e00;
            --accent-hover: #b82e33;
            --text-color: #c9d1d9;
            --heading-color: #ffffff;
            --border-color: #30363d;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.7;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        /* Header */
        header {
            background-color: rgba(22, 27, 34, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

      .logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--accent-color);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            padding: 6rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .pill-tag {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(212, 55, 61, 0.1);
            border: 1px solid var(--accent-color);
            border-radius: 50px;
            color: var(--accent-color);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .pill-tag i {
            margin-right: 0.5rem;
        }

        .hero-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .btn:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 55, 61, 0.3);
        }

        /* Sections */
        .section {
            padding: 6rem 0;
        }

        .section-bg {
            background-color: var(--secondary-color);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: var(--text-color);
        }

        /* Info Section */
        .info-section {
            padding: 4rem 0;
        }

        .info-block {
            margin-bottom: 4rem;
        }

        .info-block:last-child {
            margin-bottom: 0;
        }

        .info-block h2 {
            font-size: 2.5rem;
            color: var(--heading-color);
            margin-bottom: 1.5rem;
        }

        .info-block p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
        }

        /* Grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        /* Cards */
        .card {
            background: var(--secondary-color);
            padding: 2rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .card h3 {
            font-size: 1.5rem;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        /* Steps */
        .step-card {
            position: relative;
            padding-left: 4rem;
            text-align: left;
        }

        .step-number {
            position: absolute;
            left: 1rem;
            top: 2rem;
            width: 50px;
            height: 50px;
            background: rgba(212, 55, 61, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        /* Pricing */
        .pricing-card {
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--accent-color);
            transform: scale(1.05);
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--accent-color);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.85rem;
            font-weight: bold;
        }

        .price {
            font-size: 3rem;
            color: var(--accent-color);
            font-weight: 700;
            margin: 1rem 0;
        }

        .price span {
            font-size: 1rem;
        }

        .features-list {
            list-style: none;
            text-align: left;
            margin: 2rem 0;
        }

        .features-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .features-list i {
            color: var(--accent-color);
            margin-right: 0.5rem;
            font-size: 1rem;
        }

        /* FAQ */
        .faq-item {
            background: var(--secondary-color);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem;
            text-align: left;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
        }

        /* Footer */
        footer {
            background: #010409;
            padding: 3rem 0;
            text-align: center;
            color: #888;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--secondary-color);
                flex-direction: column;
                padding: 1rem 0;
            }

            nav ul.active {
                display: flex;
            }

            nav li {
                padding: 1rem;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .info-block h2 {
                font-size: 2rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }
        }