* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(to right, #dbeafe, #EBFFD8);;
            min-height: 100vh;
            padding: 60px 20px;
        }

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

        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 80px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .figma-icon {
            width: 80px;
            height: 80px;
            background: #2D2D2D;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        

        .circle {
            border-radius: 50%;
        }

        

        .header-content h1 {
            color: #333;
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .header-content h2 {
            color: #333;
            font-size: 3rem;
            font-weight: bold;
            line-height: 1.1;
        }

        .steps-badge {
            background: rgba(255, 255, 255, 0.2);
            color: #333;
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .features-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 40px;
            margin-bottom: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-card:nth-child(4) {
            grid-column: 2;
            grid-row: 2;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 30px 25px;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            position: absolute;
            top: -20px;
            left: 25px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .feature-card:nth-child(1) .feature-icon {
            background: #333;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: #E91E63;
        }

        .feature-card:nth-child(3) .feature-icon {
            background: #4CAF50;
        }

        .feature-card:nth-child(4) .feature-icon {
            background: #2196F3;
        }

        .feature-card h3 {
            color: #333;
            font-size: 1.4rem;
            font-weight: bold;
            margin: 25px 0 15px 0;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .feature-button {
            color: #666;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .feature-button:hover {
            color: #333;
        }

        .explore-button {
            display: block;
            margin: 0 auto;
            background: #333;
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .explore-button:hover {
            background: #555;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 60px;
            }

            .header-content h2 {
                font-size: 2.2rem;
            }

            .features-title {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 40px;
                max-width: none;
            }

            .feature-card:nth-child(4) {
                grid-column: 1;
                grid-row: auto;
            }

            .steps-badge {
                font-size: 1rem;
                padding: 10px 18px;
            }
        }

        @media (max-width: 480px) {
            .header-content h2 {
                font-size: 1.8rem;
            }

            .figma-icon {
                width: 60px;
                height: 60px;
            }

            .figma-circles {
                width: 30px;
                height: 38px;
            }

            body {
                padding: 40px 15px;
    }
}