.get-started-wrapper {
    font-family: 'Inter', sans-serif;
    padding: 0px  6% 31px;
    background: #fff;
}



.get-started-heading {
    text-align: center;
    margin-bottom: 40px;
}

.get-started-title {
    font-size: 32px;
    font-weight: 700;
    color: #DA2F47;
    font-family: 'Lato', sans-serif;
    margin-bottom: 8px;
}

.get-started-subtext {
    font-size: 16px;
    color: #000;
    margin-top: 0px;
    font-family: 'lato', sans-serif;
    font-weight: 500
}

.get-started-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.get-started-left,
.get-started-right {
    flex: 0 0 48%;
    min-width: 300px;
}

/* Left Side Info */
.get-started-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #153469;
    margin-bottom: 10px;
    font-family: 'lato', sans-serif;
}

.get-started-info-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
    font-family: 'lato',sans-serif;
}

.get-started-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #153469;
}

/* Flip Cards */
.get-started-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.get-started-flip-card {
    width: 161px;
    height: 152px;
    perspective: 1000px;
}

.get-started-flip-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
    cursor: pointer;
}

.get-started-flip-card:hover .get-started-flip-inner {
    transform: rotateY(180deg);
}

.get-started-card-front,
.get-started-card-back {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #f5f8ff;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    font-family: 'lato',sans-serif;
    font-weight: 550;
}

.get-started-card-front img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.get-started-card-back {
    background: #eaf0ff;
    transform: rotateY(180deg);
}

/* Right Side Form */
.get-started-form {
    background: #f8faff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 90%;
}

.get-started-form label {
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 14px;
}

.get-started-form input,
.get-started-form select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
}

.get-started-phone-wrap {
    display: flex;
    gap: 10px;
}

.get-started-phone-wrap select {
    width: 80px;
}

.get-started-datetime-wrap {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.get-started-btn-wrapper {
    margin-top: auto;
    /* text-align: right; */
    text-align: center;
}

.get-started-submit-btn {
    background-color: #DA2F47;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
    text-align: center;
}

.get-started-submit-btn:hover {
    background-color: #c02038;
}

/* Responsive */
@media (max-width: 768px) {
    .get-started-content {
        flex-direction: column;
    }

    .get-started-card-grid {
        justify-content: center;
    }

    .get-started-datetime-wrap {
        flex-direction: column;
    }

    .get-started-btn-wrapper {
        text-align: center;
        margin-top: 20px;
    }
}