*{    box-sizing: border-box;}
.node:not(:first-child){display:none;}

#navigation{
	display: flex;
    width: 100%;
    justify-content: space-evenly;
    padding: 20px 40px;
    box-sizing: border-box;
	border-bottom:1px solid #ddd;
	align-items:center;
}

.logo img{
	max-height:50px;
	width:auto;
}

#formarea{
	max-width: 800px;
    margin: 0px auto;
    padding: 40px 0px 40px 0px;
}

#contentarea{
	text-align: center;
    padding: 0px 40px;
	max-width:1000px;
	margin:0px auto;
}

.logo1_list{display:flex; flex-wrap:wrap; align-items:center; justify-content:space-evenly;}

.logo1_list img{max-height:50px; width:auto; padding:5px;}

.footer4_component{
	text-align:center;
	padding:30px;
	color:#aaa;
	line-height:1.5em;
	font-size:12px;
}

.footer4_component a{
	color:#aaa;
}






        :root {
            --primary: #F27755;
            --primary-dark: #d06e53;
            --secondary: #01B0EF;
            --text: #333333;
            --text-light: #7a8a97;
            --background: #f8f9fa;
            --white: #ffffff;
            --green: #28a745;
            --red: #dc3545;
            --border: #dee2e6;
            --shadow: rgba(0, 0, 0, 0.1);
        }

		input:focus-visible{outline:none;}
		.node{display:none;}


        .progress-container {
            margin-bottom: 20px;
        }

        .progress-bar {
            height: 12px;
            background-color: #e9ecef;
            border-radius: 20px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background-color: var(--primary);
            transition: width 0.3s ease;
			width:30px;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
        }

        .progress-step {
            font-size: 12px;
            color: #d4dbfb;
            flex: 1;
            text-align: center;
        }

        .question-card {
            padding: 30px;
            margin-bottom: 0px;
            transition: all 0.3s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .question-card.fade-out {
            opacity: 0;
            transform: translateY(-20px);
        }

        .question-card.fade-in {
            opacity: 0;
            transform: translateY(20px);
        }

        .question-number {
            color: var(--primary);
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .question-text {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
			text-align:center;
        }

        .question-description {
			text-align:center;
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .options-container {
            display: flex;
            flex-direction: row;
			flex-wrap:wrap;
            gap: 12px;
            margin-bottom: 30px;
			justify-content:center;
        }

        .option-button {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 20px 10px;
            cursor: pointer;
            text-align: center;
            font-size: 18px;
			font-weight:bold;
            transition: all 0.2s ease;
			flex-grow:1;
			line-height:1em;
			display:flex;
			align-items: center;
			justify-content: center;
        }
		
		.option-button img{
			display:inline-block;
			max-height:20px;
			width:auto;
			margin-right:20px;
		}
		
		.tworow .option-button{
			    flex-basis: 49%;
		}
		
		.threerow .option-button{
			    flex-basis: 32%;
		}
		
		.fourrow .option-button{
			    flex-basis: 24%;
		}

        .option-button:hover {
            border-color: var(--secondary);
            background-color: #f0f7ff;
        }

        .option-button.selected {
            border-color: var(--primary);
            background-color: #f0f7ff;
            box-shadow: 0 0 0 1px var(--primary);
        }

        .text-input {
            width: 100%;
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .text-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 1px var(--primary);
        }

        .select-input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            margin-bottom: 20px;
            background-color: var(--white);
            cursor: pointer;
            appearance: none; /* Remove default arrow */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a89dc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            padding-right: 40px;
        }
        
        .select-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 1px var(--primary);
        }
        
        .zip-input {
            width: 180px;
        }

        .action-buttons {
            text-align:center;
			padding:0px 30px;
        }

        .back-button {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-size: 16px;
            padding: 8px 16px;
			visibility:hidden;
			margin:0px auto;
        }

        .back-button:hover {
            color: #efefef;
        }
		
		.callbtn{
			background:#01B0EF;
			color:#fff;
			font-weight:bold;
			text-decoration:none;
			padding:15px 20px;
			border-radius:8px;
			font-size:18px;
		}
		
		.tcpa-language{display:none;}

        .continue-button {
            background-color: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 6px;
            padding: 20px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.2s ease;
			width:100%;
			margin-bottom:10px;
        }

        .continue-button:hover {
            background-color: var(--primary-dark);
        }

        .continue-button:disabled {
            background-color: #c0c0c0;
            cursor: not-allowed;
        }

        .saving-indicator {
            display: none;
            align-items: center;
			justify-content:center;
            gap: 10px;
            color: var(--text-light);
        }

        .saving-spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-left-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

		.errorCode{
			color: var(--red); margin-top: -15px; margin-bottom: 15px; display: none;
		}

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .results-container {
            text-align: center;
            display: none;
        }

        .results-title {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .results-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .icon-checkmark {
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 5px;
            position: relative;
            top: 2px;
        }
        
        .icon-checkmark:before {
            content: "";
            position: absolute;
            width: 8px;
            height: 16px;
            border-bottom: 2px solid var(--green);
            border-right: 2px solid var(--green);
            transform: rotate(45deg);
        }
		
		#q-dob h5{margin-bottom:5px; font-size:16px;}
        
        /* Mobile Responsiveness */
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }
            
            .question-card {
                padding: 20px;
            }
            
            .question-text {
                font-size: 20px;
            }
			.threerow .option-button{
			    flex-basis: 100%;
			}
			.option-button{width:100%;}
			.text-input{padding:10px;}
		#formarea{padding:0px 0px; min-height:0px; padding-top:20px;}
		.progress-container{padding:0px 20px;}
		.logo img{max-height:35px;}
		#navigation{padding:15px;}
		.callbtn{font-size:15px;}
        }