    /* Getting Started Section Styles */
    .getting-started {
        width: 100%;
        background: #000;
        padding: 100px 0;
        position: relative;
    }

    .getting-started::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .getting-started-container {
        max-width: 1140px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .getting-started-header {
        text-align: center;
        margin-bottom: 80px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .getting-started-subtitle {
        font-size: 16px;
        color: #ffffff;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .getting-started-title,
    h3 {
        font-size: 48px;
        font-weight: 400;
        color: white;
        margin: 0;
        line-height: 1.2;
    }

    .steps-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .step-box {
        width: 364px;
        height: 470px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 7px;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .step-box:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .step-box:hover::before {
        opacity: 1;
    }

    .step-image-container {
        width: 350px;
        height: 284px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 25px;
        position: relative;
    }

    .step-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .step-box:hover .step-image {
        transform: scale(1.05);
    }

    .step-content {
        padding: 0 15px;
    }

    .step-heading {
        font-size: 24px;
        font-weight: 400;
        color: white;
        margin: 0 0 15px 0;
        line-height: 1.3;
    }

    .step-text {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin: 0;
    }

    .start-badge {
        background: linear-gradient(90deg, #FF5900 0%, #134B9D 100%);
        width: 147px;
        height: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 9999px;
    }

    .start-inner-badge {
        background: black;
        width: 145px;
        height: 26px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 9999px;
    }

    .services-subtitle {
        font-size: 16px;
        font-weight: 400;
        color: white;
        margin: 0;
    }

    /* Getting Started Section Responsive Styles */
    @media (max-width: 1200px) {
        .getting-started {
            padding: 80px 0;
        }

        .getting-started-container {
            max-width: 960px;
            padding: 0 30px;
        }

        .getting-started-title,
        .getting-started-title h3 {
            font-size: 42px !important;
        }

        .steps-grid {
            gap: 25px;
        }

        .step-box {
            width: 100%;
            max-width: 320px;
            height: 420px;
            margin: 0 auto;
        }

        .step-image-container {
            width: 100%;
            max-width: 306px;
            height: 260px;
        }
    }

    @media (max-width: 768px) {
        .getting-started {
            padding: 60px 0;
        }

        .getting-started-header {
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .getting-started-title,
        .getting-started-title h3 {
            font-size: 36px !important;
        }

        .getting-started-subtitle {
            font-size: 14px !important;
            margin-bottom: 15px;
        }

        .steps-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 500px;
            margin: 0 auto;
        }

        .step-box {
            width: 100%;
            max-width: 400px;
            height: auto;
            min-height: 400px;
            margin: 0 auto;
        }

        .step-image-container {
            width: 100%;
            max-width: none;
            height: 250px;
        }

        .step-heading {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .step-text {
            font-size: 15px;
        }

        @media (max-width: 480px) {
            .getting-started {
                padding: 40px 0;
            }

            .getting-started-container {
                padding: 0 15px;
            }

            .getting-started-header {
                margin-bottom: 40px;
                padding: 0 10px;
            }

            .getting-started-title,
            .getting-started-title h3 {
                font-size: 28px !important;
            }

            .getting-started-subtitle {
                font-size: 13px !important;
                letter-spacing: 1px;
                margin-bottom: 12px;
            }

            .steps-grid {
                gap: 25px;
                max-width: 100%;
            }

            .step-box {
                width: 100%;
                max-width: 100%;
                height: auto;
                min-height: 380px;
                padding: 5px;
            }

            .step-image-container {
                height: 200px;
                margin-bottom: 20px;
            }

            .step-content {
                padding: 0 12px;
            }

            .step-heading {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .step-text {
                font-size: 14px;
                line-height: 1.5;
            }

            /* Adjust hover effects for mobile */
            .step-box:hover {
                transform: translateY(-5px);
            }
        }
    }