/* Quiz Typeform Style CSS */

/* Quiz Container */
.quiz-container {
    max-width: 920px;
    margin: 0 auto;
    min-height: 85vh;
    padding: 40px 30px 60px;
    background-color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.5s ease;
}

/* Progress Bar */
.quiz-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e9ecef;
    z-index: 100;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover-color) 100%);
    transition: width 0.4s ease;
}

/* Quiz Steps Navigation */
.quiz-steps {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto 45px;
    z-index: 10;
    justify-content: space-between;
    padding: 0 10px;
}

.quiz-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #eaecef;
    z-index: -1;
}

.quiz-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: #6c757d;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.quiz-step.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(92, 106, 196, 0.2);
}

.quiz-step.completed {
    background-color: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

/* Question Styles */
.quiz-question {
    margin-bottom: 40px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto 40px;
    animation: fadeSlideDown 0.7s ease-out;
}

.quiz-question h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #303030;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
}

.quiz-question h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(92, 106, 196, 0.3) 100%);
    border-radius: 3px;
}

.quiz-question p {
    font-size: 18px;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quiz Sections */
.quiz-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeSlideUp 0.8s ease-out;
}

.quiz-section.hidden {
    display: none;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    max-width: 620px;
    margin: 0 auto 40px;
}

.quiz-option {
    background-color: white;
    border: 1px solid #e1e4e8;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
    width: 100%;
    margin-bottom: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transform-origin: center;
}

.quiz-option:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #d0d7de;
    z-index: 2;
}

.quiz-option.selected {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(92, 106, 196, 0.15);
    background-color: rgba(92, 106, 196, 0.03);
}

.quiz-option.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(92, 106, 196, 0.6) 100%);
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.quiz-option input[type="radio"],
.quiz-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    padding: 26px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
    width: 100%;
    transition: all 0.3s ease;
}

.quiz-option:hover .option-content {
    transform: translateX(5px);
}

.option-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    background-color: rgba(92, 106, 196, 0.07);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quiz-option:hover .option-icon {
    transform: scale(1.1);
    background-color: rgba(92, 106, 196, 0.12);
}

.option-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.quiz-option.selected .option-icon {
    background-color: var(--primary-color);
}

.quiz-option.selected .option-icon svg {
    color: white;
}

.option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
    position: relative;
}

.option-label {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.quiz-option:hover .option-label {
    color: var(--primary-color);
}

.quiz-option.selected .option-label {
    color: var(--primary-color);
}

.option-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.quiz-option:hover .option-description {
    opacity: 1;
}

/* Feature Selection */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #bcc3ce;
}

.feature-item.selected {
    border-color: var(--primary-color);
    background-color: rgba(92, 106, 196, 0.05);
}

.feature-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.feature-checkbox-icon {
    width: 20px;
    height: 20px;
    border: 1.5px solid #dee2e6;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.2s ease;
}

.feature-item.selected .feature-checkbox-icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.feature-item.selected .feature-checkbox-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.feature-label {
    font-size: 15px;
    font-weight: 500;
    color: #343a40;
    flex: 1;
}

.feature-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
}

.feature-tag-basic {
    background-color: rgba(80, 184, 60, 0.1);
    color: #40c057;
}

.feature-tag-premium {
    background-color: rgba(92, 106, 196, 0.1);
    color: var(--primary-color);
}

.feature-tag-advanced {
    background-color: rgba(255, 184, 46, 0.1);
    color: #fd7e14;
}

/* Timeline Slider */
.timeline-slider {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
}

.timeline-track {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    position: relative;
    margin: 40px 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover-color) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.timeline-thumb {
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.timeline-thumb:hover, 
.timeline-thumb.active {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 6px rgba(92, 106, 196, 0.2);
}

.timeline-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding: 0 12px;
}

.timeline-mark {
    text-align: center;
    width: 80px;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    transition: color 0.3s ease;
    cursor: pointer;
}

.timeline-mark.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Budget Range */
.budget-range {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
}

.budget-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background-color: #e9ecef;
    border-radius: 3px;
    outline: none;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(92, 106, 196, 0.2);
}

.budget-values {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.budget-value {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
}

.budget-display {
    text-align: center;
    margin: 24px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #343a40;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(92, 106, 196, 0.1);
    outline: none;
    background-color: white;
}

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

/* Radio Group */
.radio-group {
    display: flex;
    gap: 16px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Navigation Buttons */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn:focus {
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a8ade 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover-color) 0%, #7a8ade 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(92, 106, 196, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(92, 106, 196, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(92, 106, 196, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(92, 106, 196, 0.1);
}

.btn-outline:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(92, 106, 196, 0.1);
}

.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.next-button, .back-button, .submit-button {
    min-width: 140px;
}

/* AI Analysis Section */
.ai-analysis {
    padding: 28px;
    background: linear-gradient(135deg, rgba(92, 106, 196, 0.03) 0%, rgba(92, 106, 196, 0.08) 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(92, 106, 196, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ai-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    min-height: 200px;
}

.ai-loading-text {
    font-size: 18px;
    font-weight: 500;
    color: #343a40;
    margin-top: 16px;
}

.loader-circle {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(92, 106, 196, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ai-result {
    display: none;
}

.ai-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.ai-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    box-shadow: 0 2px 10px rgba(92, 106, 196, 0.3);
}

.ai-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ai-title {
    font-weight: 700;
    font-size: 22px;
    color: #343a40;
    letter-spacing: -0.5px;
}

.ai-tag {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(253, 160, 133, 0.2);
}

.ai-content {
    background-color: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ai-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.status-viable {
    color: #40c057;
    position: relative;
    padding-left: 20px;
}

.status-viable:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #40c057;
    border-radius: 50%;
}

.status-pending {
    color: #fd7e14;
    position: relative;
    padding-left: 20px;
}

.status-pending:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #fd7e14;
    border-radius: 50%;
}

.ai-section {
    padding: 24px;
    border-bottom: 1px solid #dee2e6;
}

.ai-section:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 12px;
}

.section-content {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
}

.next-steps-list {
    padding-left: 20px;
    margin-top: 8px;
}

.next-steps-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.ai-notification {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    text-align: center;
}

.ai-notification p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #343a40;
}

.result-actions {
    margin-top: 40px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-up {
    animation: slideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.slide-up {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(92, 106, 196, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(92, 106, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(92, 106, 196, 0);
    }
}

.btn-primary:focus {
    animation: pulse 1.5s infinite;
}

/* Subtle bounce effect for quiz options */
@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.quiz-option.selected {
    animation: subtleBounce 0.5s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .quiz-steps {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .quiz-steps::before {
        left: 18px;
        right: 18px;
    }
    
    .quiz-step {
        margin: 0 6px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .quiz-step.active {
        transform: scale(1.15);
    }
    
    .quiz-container {
        padding: 30px 20px 50px;
        min-height: 90vh;
        border-radius: 6px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    }
    
    .quiz-question {
        margin-bottom: 30px;
    }
    
    .quiz-question h2 {
        font-size: 26px;
    }
    
    .quiz-question p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .quiz-question h2::after {
        width: 60px;
        height: 2px;
    }
    
    .quiz-option {
        margin-bottom: 12px;
    }
    
    .option-icon {
        width: 38px;
        height: 38px;
    }
    
    .option-content {
        padding: 18px 20px;
        gap: 16px;
    }
    
    .option-label {
        font-size: 16px;
    }
    
    .option-description {
        font-size: 14px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .quiz-navigation {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 22px;
        font-size: 15px;
        border-radius: 40px;
    }
}

/* Mensagens de erro nos inputs */
.form-group .error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.1);
}

.form-group .error-message {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    animation: fadeIn 0.3s ease-in-out;
}

/* Mensagem de sucesso */
.success-message {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message .success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: #10b981;
}

.success-message h3 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #047857;
    margin-bottom: 0.75rem;
}

.success-message .small {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mensagem de erro na submissão */
.error-submit-message {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.error-submit-message .error-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    color: #ef4444;
}

.error-submit-message p {
    color: #b91c1c;
    margin: 0;
}

/* Loading de submissão */
.submission-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 1rem 0;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    border-top-color: #4f46e5;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .quiz-container {
        padding: 25px 16px 40px;
        border-radius: 0;
    }
    
    .quiz-step {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .quiz-steps {
        margin-bottom: 25px;
    }
    
    .quiz-steps::before {
        top: 14px;
        height: 1.5px;
    }
    
    .quiz-question h2 {
        font-size: 24px;
    }
    
    .quiz-question p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .option-content {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .option-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .option-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .option-label {
        font-size: 15px;
    }
    
    .option-description {
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .budget-display {
        font-size: 28px;
    }
    
    .form-control {
        font-size: 15px;
        padding: 10px 14px;
    }
}