
        :root {
            --primary-color: #d63384;
            --secondary-color: #6f42c1;
            --accent-color: #6f42c1;
            --dark-color: #2D2D2D;
            --light-color: #F7F7F7;
            --gray-color: #767676;
            --border-radius: 12px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #fff;
            overflow-x: hidden;
            position: relative;
        }

        /* Interactive Background Elements */
        .background-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary-color);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--secondary-color);
            top: 60%;
            right: 10%;
            animation-delay: 5s;
            animation-duration: 25s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--accent-color);
            bottom: 15%;
            left: 15%;
            animation-delay: 10s;
            animation-duration: 30s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-20px) rotate(90deg);
            }

            50% {
                transform: translateY(0) rotate(180deg);
            }

            75% {
                transform: translateY(20px) rotate(270deg);
            }
        }

        .cta-button {
            background-color: var(--primary-color);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
        }

        .cta-button:hover {
            background-color: #ff4247;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 90, 95, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            visibility: hidden;
            /*background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;*/
        }

        /* Hero Section */
        .hero {
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            /* font-family: 'Poppins', sans-serif; */
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--gray-color);
            max-width: 950px;
            margin: 0 auto 2.5rem;
        }

        .hero-image {
            position: relative;
            /* margin-top: 3rem; */
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            /* transform: perspective(1000px) rotateX(5deg);
            transition: var(--transition); */
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateX(0deg);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

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

        /* Main Content */
        .container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: flex;
            gap: 3rem;
        }

        main {
            flex: 2;
        }

        aside {
            flex: 1;
        }

        /* Article Styles with Animations */
        .article-section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .article-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            transition: height 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .article-section:hover::before {
            height: 100%;
        }

        .article-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-list li {
            list-style-type: none ;
            position: relative;
            padding-left: 1.8rem;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 90, 95, 0.05), rgba(0, 166, 153, 0.05));
            border-left: 4px solid var(--secondary-color);
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            transition: var(--transition);
        }

        .highlight-box:hover {
            transform: translateX(10px);
        }

        .step-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .step-card {
            flex: 1;
            min-width: 250px;
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        .step-card h2 {
            font-size: 1.3rem;
        }

        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .step-card a {
            color: #4b4b4b;
            font-weight: 600;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: var(--border-radius);
            overflow: hidden;
            display: block;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .comparison-table table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
        }

        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
            white-space: nowrap;
        }

        .comparison-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #f0f0f0;
            min-width: 150px;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover {
            background-color: rgba(255, 90, 95, 0.03);
        }

        /* Mobile-specific table styles */
        @media (max-width: 768px) {
            .comparison-table {
                display: block;
                width: 100%;
                overflow-x: auto;
                border-radius: var(--border-radius);
                -webkit-overflow-scrolling: touch;
            }

            .comparison-table table {
                min-width: 700px;
                /* Ensures table is wide enough for content */
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }

            .comparison-table th {
                position: sticky;
                left: 0;
                background-color: var(--primary-color);
            }

            /* Add visual indicators for horizontal scrolling */
            .comparison-table::after {
                content: '→';
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: var(--primary-color);
                font-size: 1.5rem;
                opacity: 0.7;
                animation: bounceRight 2s infinite;
                display: none;
            }

            @keyframes bounceRight {

                0%,
                100% {
                    transform: translateY(-50%) translateX(0);
                }

                50% {
                    transform: translateY(-50%) translateX(5px);
                }
            }

            /* Show scroll indicator on mobile */
            .comparison-table.scrollable::after {
                display: block;
            }
        }

        /* Mobile-friendly tech stack cards */
        .mobile-tech-stack {
            display: none;
        }

        .tech-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
            transition: var(--transition);
        }

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

        .tech-card h2 {
            font-size:20px;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .tech-card p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .tech-card p strong {
            color: var(--dark-color);
        }

       
        @media (max-width: 768px) {
            .comparison-table {
                display: none;
            }

            .mobile-tech-stack {
                display: block;
                margin-top: 2rem;
            }
        }

       
        @media (min-width: 769px) {
            .comparison-table {
                display: block;
            }

            .mobile-tech-stack {
                display: none;
            }
        }


        .sidebar {
            position: sticky;
            top: 100px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 1.8rem;
            margin-bottom: 2rem;
            transition: var(--transition);
        }

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

        .sidebar h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-color);
            color: var(--dark-color);
        }

        .sidebar h4 {
            font-size: 1.1rem;
            margin: 1.5rem 0 1rem;
            color: var(--dark-color);
            font-weight: 600;
        }

        .table-of-contents {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .table-of-contents li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .table-of-contents a {
            text-decoration: none;
            color: var(--gray-color);
            transition: var(--transition);
            display: block;
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.95rem;
        }

        .table-of-contents a::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .table-of-contents a:hover {
            color: var(--primary-color);
            padding-left: 2rem;
        }

        .table-of-contents a:hover::before {
            transform: translateX(5px);
        }

        /* Categories and Tags */
        .categories,
        .tags {
            margin-bottom: 2rem;
        }

        .category-list,
        .tag-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .category-list li,
        .tag-list li {
            margin: 0;
            padding: 0;
        }

        .category-list a,
        .tag-list a {
            display: inline-block;
            text-decoration: none;
            background: #f5f5f5;
            color: var(--gray-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .category-list a:hover,
        .tag-list a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 90, 95, 0.2);
        }

        /* Related Products Section */
        .related-products {
            background: linear-gradient(135deg, rgba(255, 90, 95, 0.05), rgba(0, 166, 153, 0.05));
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-top: 2rem;
            border: 1px solid rgba(255, 90, 95, 0.1);
        }

        .related-products h3 {
            color:#d63384;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .product-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .product-card:hover img {
            transform: scale(1.05);
        }

        .product-card-content {
            padding: 1rem;
        }

        .product-card h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1rem;
            line-height: 1.4;
        }

        .product-card p {
            font-size: 0.85rem;
            color: var(--gray-color);
            margin: 0;
            line-height: 1.5;
        }

        /* Popular Posts */
        .popular-posts {
            margin-top: 2rem;
        }

        .post-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .post-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .post-image {
            flex-shrink: 0;
            width: 80px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .post-item:hover .post-image img {
            transform: scale(1.1);
        }

        .post-content h5 {
            font-size: 0.95rem;
            margin: 0 0 0.3rem 0;
            line-height: 1.4;
        }

        .post-content h5 a {
            color: var(--dark-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .post-content h5 a:hover {
            color: var(--primary-color);
        }

        .post-meta {
            font-size: 0.8rem;
            color: var(--gray-color);
        }

        /* Newsletter Widget */
        .newsletter-widget {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin-top: 2rem;
            text-align: center;
        }

        .newsletter-widget h3 {
            color: white;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter-widget p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-form input {
            padding: 0.8rem 1rem;
            border-radius: 50px;
            border: none;
            font-family: inherit;
            font-size: 0.95rem;
        }

        .newsletter-form button {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        /* FAQ Section Styles */
        .faq-section {
            margin-top: 3rem;
            padding: 2.5rem;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .faq-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .faq-section h2 {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .faq-section h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.2rem;
            border-radius: 10px;
            overflow: hidden;
            background: #f9f9f9;
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }

        .faq-item:hover {
            background: #f5f5f5;
            border-color: #e0e0e0;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-color);
            background: white;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--light-color);
        }

        .faq-question h4 {
            margin: 0;
            font-size: 1.1rem;
            flex: 1;
            padding-right: 1rem;
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: var(--secondary-color);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--gray-color);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 1000px;
        }

        .faq-answer p {
            margin-bottom: 1rem;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        /* FAQ Contact CTA */
        .faq-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 90, 95, 0.05), rgba(0, 166, 153, 0.05));
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 90, 95, 0.1);
        }

        .faq-cta h4 {
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        /* Animation for FAQ items */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-item {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .faq-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .faq-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .faq-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .faq-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .faq-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .faq-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        .faq-item:nth-child(7) {
            animation-delay: 0.7s;
        }

        .faq-item:nth-child(8) {
            animation-delay: 0.8s;
        }

        /* Responsive FAQ */
        @media (max-width: 768px) {
            .faq-section {
                padding: 1.5rem;
            }

            .faq-question {
                padding: 1.2rem;
            }

            .faq-question h4 {
                font-size: 1rem;
            }

            .faq-answer {
                font-size: 0.95rem;
            }

            .faq-item.active .faq-answer {
                padding: 1.2rem;
            }
        }


        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 70px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(255, 90, 95, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .container1 {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2.6rem;
            }

            .step-container {
                flex-direction: column;
            }

            /* Mobile sidebar adjustments */
            .sidebar {
                position: static;
                margin-top: 2rem;
            }

            .mobile-sidebar {
                display: block;
            }

            .desktop-sidebar {
                display: none;
            }
        }

        @media (min-width: 993px) {
            .mobile-sidebar {
                display: none;
            }

            .desktop-sidebar {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .article-section {
                padding: 1.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .category-list,
            .tag-list {
                justify-content: center;
            }
        }

        /* Mobile-sidebar */

        @media (max-width: 992px) {

            /* Mobile Table of Contents Container */
            .mobile-toc-container {
                display: block;
                max-width: 1200px;
                margin: 2rem auto 0;
                padding: 0 5%;
            }

            .mobile-toc-sidebar {
                background: white;
                border-radius: var(--border-radius);
                box-shadow: var(--box-shadow);
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            /* Hide the old mobile-sidebar */
            .mobile-sidebar {
                display: none;
            }

            /* Mobile bottom sidebar (for categories & tags) */
            .mobile-bottom-sidebar {
                display: block;
                max-width: 1200px;
                margin: 2rem auto 0;
                padding: 0 5%;
            }

            .mobile-bottom-sidebar .sidebar {
                background: white;
                border-radius: var(--border-radius);
                box-shadow: var(--box-shadow);
                padding: 1.5rem;
                margin-top: 2rem;
            }
        }

        @media (min-width: 993px) {

            .mobile-toc-container,
            .mobile-bottom-sidebar {
                display: none;
            }
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-animation>* {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .stagger-animation.visible>* {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-animation.visible>*:nth-child(1) {
            transition-delay: 0.1s;
        }

        .stagger-animation.visible>*:nth-child(2) {
            transition-delay: 0.2s;
        }

        .stagger-animation.visible>*:nth-child(3) {
            transition-delay: 0.3s;
        }

        .stagger-animation.visible>*:nth-child(4) {
            transition-delay: 0.4s;
        }

        .stagger-animation.visible>*:nth-child(5) {
            transition-delay: 0.5s;
        }

        /* Pulse animation for CTAs */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 90, 95, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 90, 95, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 90, 95, 0);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @media (min-width: 1200px) {

            h2,
            .h2 {
                font-size: 1.6rem;
            }
        }

        .intro a {
            color: #2D2D2D;
            font-weight: 600;
        }

        .step-build a {
            color: #2D2D2D;
            font-weight: 600;

        }
