body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.top-bar {
    background-color: white;
    text-align: center;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
    max-height: 50px;
    display: inline-block;
    vertical-align: middle;
}

.header-text {
    text-align: center;
    padding: 30px 20px 10px 20px;
}

.header-text h1 {
    font-size: 32px;
    margin: 0 0 12px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

.header-text .subtitle {
    font-size: 16px;
    color: #f0f0f0;
    margin: 0;
    font-weight: 400;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    width: 100%;
    margin: 20px auto 40px auto;
    position: relative;
}

.stepper-line-bg {
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.stepper-line-active {
    position: absolute;
    top: 15px;
    left: 20px;
    height: 1px;
    background: white;
    z-index: 1;
    transition: width 0.3s ease;
}

.step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid white;
    background: #444;
    /* Dark bg to match screenshot if needed, actually it looks transparent in screenshot */
    background: transparent;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.step.active .step-circle,
.step.completed .step-circle {
    background: white;
    color: black;
    border-color: white;
}

.step-label {
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glass Form */
.glass-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.step-title-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #eee;
    margin-bottom: 8px;
}

.step-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 32px 0;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.tab {
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tab.active {
    background: #c9151b;
    color: white;
}

.tab:not(.active) {
    background: white;
    color: #333;
}

/* Options */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-box {
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.option-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option-box.selected {
    border-color: #c9151b;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.option-box.selected .radio-circle {
    border-color: #c9151b;
}

.option-box.selected .radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #c9151b;
    border-radius: 50%;
}

.option-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.main-label {
    font-size: 16px;
}

.sub-label {
    font-weight: 400;
    color: #777;
    font-size: 13px;
}

/* Form Inputs */
.form-inputs {
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 18px 20px;
    border-radius: 8px;
    border: none;
    background: white;
    font-family: inherit;
    font-size: 15px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.form-control::placeholder {
    color: #999;
}

/* Buttons */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.form-actions-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    border: none;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary.disabled {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 11px 31px;
    /* adjust for border */
}

.btn-secondary {
    background: white;
    color: black;
}

/* Bottom Stats Container */
.stats-container-img {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    max-width: 1080px;
}

.stats-container-img img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .glass-form {
        padding: 20px 15px;
    }

    .header-text {
        padding: 20px 10px 5px 10px;
    }

    .header-text h1 {
        font-size: 24px;
    }

    .logo-img {
        max-height: 40px;
    }

    .step-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .option-box {
        padding: 12px 15px;
    }

    .form-control {
        padding: 12px 15px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .stats-container-img {
        padding: 0 15px;
    }

    .stepper-line-bg,
    .stepper-line-active {
        display: none;
        /* simple mobile stepper */
    }

    .step-label {
        display: none;
    }
}