
        
.depend-on-question {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.depend-on-question.show {
  max-height: 500px; 
  opacity: 1;
}

.depend-on-question .content {
  padding: 0.5rem 0;
}




    .section-title {
        color: #3b6063;
        padding-bottom: 10px;
        margin-bottom: 30px;
        display: inline-block;
    }
    
    .survey-card {
        border-radius: 15px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border: 1px double #607d8b;
        border-radius: 0.4rem;
        transition: transform 0.3s;
        height: 100%;
        margin-bottom: 20px;
    }
    
    .survey-card:hover {
        transform: translateY(-1px);
    }
    
    .question-section {
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid #607d8b;
    }
    
    .section-header {
        background-color: rgba(52, 152, 219, 0.1);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .question-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #3c606442;
    }
    
    .question-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .rating-scale {
        display: flex;
        justify-content: space-between;
        margin: 15px 0;
        flex-wrap: wrap;
    }
    
    .rating-option {
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        padding: 10px;
        border-radius: 8px;
        flex: 1;
        min-width: 80px;
        margin: 5px;
    }
    
    .rating-option:hover {
        background-color: #607d8b3b;
    }
    
    .rating-option.selected {
        background-color: #607d8b;
        color: white;
    }
    
    .rating-emoji {
        font-size: 1.8rem;
        display: block;
        margin-bottom: 5px;
    }
    
    .stats-card {
        border-radius: 10px;
        text-align: center;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        border: none;
    }
    
    .stats-value {
        font-size: 2.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    
    .stats-label {
        color: #666;
        font-size: 0.9rem;
    }
    
    .progress {
        height: 25px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .thank-you-message {
        display: none;
        background-color: rgba(39, 174, 96, 0.1);
        border: 1px solid #27ae60;
        border-radius: 10px;
        padding: 30px;
        margin-top: 30px;
        text-align: center;
    }
    
    .survey-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 0.8rem;
    }
    
    .required-mark {
        color: #e74c3c;
        font-weight: bold;
    }

    #surveyContainer {
        border-radius: 0.4rem;
    }
    
    .checkbox-option, .radio-option {
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 8px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    
    .checkbox-option:hover, .radio-option:hover {
        background-color: rgba(96, 125, 139, 0.1);
    }
    
    .checkbox-option.selected, .radio-option.selected {
        background-color: rgba(96, 125, 139, 0.2);
    }

    .form-check-input:checked {
        background-color: #375a64;
        border-color: #2a5058;
    }
    .form-check-input:focus {
        border-color: #c8dbdfff;
        outline: 0;
        box-shadow: 0 0 0 .25rem #c8dbdfff;
    }
    @media (max-width: 768px) {
        .hero-section {
            padding: 60px 0;
        }
        
        .rating-scale {
            flex-wrap: wrap;
        }
        
        .rating-option {
            flex: 0 0 48%;
            margin-bottom: 10px;
        }
    }


    .main-color {
        background-color: #375a64;
    }