
    .gerd-q-container {
        max-width: 800px;
        margin: 30px auto;
        padding: 30px;
        background-color: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .gerd-q-container h2 {
        color: #2c3e50;
        text-align: center;
        margin-bottom: 10px;
        font-size: 28px;
    }
    
    .description {
        text-align: center;
        color: #5a6268;
        margin-bottom: 30px;
        font-size: 16px;
    }
    
    .question {
        background-color: white;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .question h3 {
        color: #2c3e50;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .options {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .options label {
        display: flex;
        align-items: center;
        background-color: #f1f5f9;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        transition: all 0.3s;
        flex: 1;
        min-width: 120px;
    }
    
    .options label:hover {
        background-color: #e2e8f0;
    }
    
    .options input[type="radio"] {
        margin-right: 10px;
    }
    
    .option-text {
        font-size: 16px;
    }
    
    #calculate-gerd, #reset-gerd {
        display: block;
        width: 100%;
        padding: 14px;
        background-color: #3498db;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 20px;
        transition: background-color 0.3s;
    }
    
    #calculate-gerd:hover, #reset-gerd:hover {
        background-color: #2980b9;
    }
    
    .gerd-q-result {
        margin-top: 30px;
    }
    
    .score-container {
        display: flex;
        justify-content: space-around;
        margin: 25px 0;
        text-align: center;
    }
    
    .score-value, .risk-level {
        flex: 1;
        padding: 20px;
        border-radius: 8px;
        background-color: #e3f2fd;
    }
    
    .score-value span:first-child, .risk-level span:first-child {
        display: block;
        font-size: 42px;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 5px;
    }
    
    .score-label, .risk-label {
        font-size: 16px;
        color: #5a6268;
    }
    
    .interpretation, .recommendations {
        background-color: white;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .interpretation h4, .recommendations h4 {
        color: #2c3e50;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 20px;
    }
    
    #result-interpretation {
        font-size: 17px;
        line-height: 1.6;
        color: #4a5568;
    }
    
    #recommendation-list {
        padding-left: 20px;
        margin-bottom: 0;
    }
    
    #recommendation-list li {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.5;
    }
    
    .disclaimer {
        background-color: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 15px;
        margin: 25px 0;
        font-size: 14px;
        color: #856404;
    }
    
    @media (max-width: 768px) {
        .options {
            flex-direction: column;
        }
        
        .options label {
            width: 100%;
        }
        
        .score-container {
            flex-direction: column;
            gap: 15px;
        }
    }
    