/* Main Container */
    .container {
        max-width: 1100px;
        margin: 40px auto;
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border-top: 6px solid #f57c00;
    }

    h1 {
        text-align: center;
        margin-bottom: 5px;
        color: #2c3e50;
    }

    .subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 35px;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 25px;
    }

    label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

    /* Inputs & Select */
    input,
    select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 15px;
        transition: 0.3s;
        background: #fff;
    }

    input:focus,
    select:focus {
        border-color: #f57c00;
        outline: none;
        box-shadow: 0 0 5px rgba(245, 124, 0, 0.3);
    }

    /* Button Options (Gender) */
    .option-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .option-btn {
        flex: 1;
        padding: 12px;
        border: 2px solid #f57c00;
        background: #fff;
        color: #f57c00;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
        text-align: center;
    }

    .option-btn:hover {
        background: #fff3e0;
    }

    .option-btn.active {
        background: #f57c00;
        color: #fff;
    }

    /* Submit Button */
    .submit-btn {
        width: 100%;
        padding: 14px;
        background: #f57c00;
        border: none;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: #e65100;
    }

    /* Responsive */
    @media(max-width:600px) {
        .option-group {
            flex-direction: column;
        }
    }

    .time-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .time-btn {
        padding: 8px 12px;
        border: 2px solid #f57c00;
        background: #fff;
        color: #f57c00;
        border-radius: 6px;
        cursor: pointer;
        font-size: 13px;
        transition: 0.3s;
    }

    .time-btn:hover {
        background: #fff3e0;
    }

    .time-btn.active {
        background: #f57c00;
        color: #fff;
    }

    .language-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .language-btn {
        padding: 8px 14px;
        border: 2px solid #f57c00;
        background: #fff;
        color: #f57c00;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: 0.3s;
    }

    .language-btn:hover {
        background: #fff3e0;
    }

    .language-btn.active {
        background: #f57c00;
        color: #fff;
    }