.get-started-section {
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    position: relative;
    padding: 32px 64px 96px;
    width: 100%;
    min-height: 586px;
    transition: all 0.3s ease;
}

.get-started-section lottie-player {
    position: absolute;
    width: 4000px;
    left: -1310px;
    top: 100px;
}

.get-started-section__title {
    font-family: "Outfit", sans-serif;
    word-break: keep-all;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-5xl);
    letter-spacing: -0.96px;
    text-align: center;
    font-variation-settings: normal;
    color: var(--color-secondary);
    --letter-spacing: -0.96px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    white-space: nowrap;
}

.get-started-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.get-started-container img {
    width: 100%;
    height: auto;
}

.tablet-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.get-started-button {
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    padding: 16px 32px;

    cursor: pointer;
    box-shadow: 0 6px 36px var(--color-primary);
    background-color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.get-started-button:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.get-started-button p {
    font-family: "Outfit", sans-serif;
    word-break: keep-all;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-xl);
    letter-spacing: 0;
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .get-started-section {
        padding: 32px 16px 64px;
        height: auto;
        gap: 32px;
    }

    .get-started-section lottie-player {
        top: 50px
    }

    .get-started-section__title {
        font-size: 28px;
        flex-wrap: wrap;
        white-space: normal;
    }

    .get-started-section__title img {
        width: 200px;
    }

    .get-started-container {
        max-width: 400px;
    }

    .get-started-button {
        padding: 12px 24px;
    }

    .get-started-button p {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .get-started-button p {
        font-size: var(--font-size-base);
    }
    
}