    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
        line-height: 1.6;
        color: #333;
        background: #23527C;
        min-height: 100vh;
    }

    .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        padding: 40px;
        margin-bottom: 20px;
    }

    .header {
        text-align: center;
        margin-bottom: 40px;
    }

    .header h1 {
        color: #2c3e50;
        font-size: 2.5em;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .header p {
        color: #7f8c8d;
        font-size: 1.1em;
    }

    .section {
        margin-bottom: 40px;
        border: 1px solid #e0e6ed;
        border-radius: 10px;
        padding: 30px;
        background: #f8f9fa;
    }

    .section-title {
        color: #2980b9;
        font-size: 1.3em;
        margin-bottom: 20px;
        font-weight: 600;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
    }

    .question {
		margin-bottom: 25px;
    }

    .question-text {
        font-size: 1.1em;
        font-weight: 500;
		margin-top: 15px;
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .options {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .option {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        border: 2px solid #e1e8ed;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
    }

    .option:hover {
        border-color: #3498db;
        background: #f0f7ff;
    }

    .option.selected {
        border-color: #3498db;
        background: #e3f2fd;
    }

    .option input[type="radio"] {
        margin-right: 12px;
        transform: scale(1.2);
    }

    .error-message {
        color: #e74c3c;
        font-size: 0.9em;
        margin-top: 8px;
        display: none;
    }

    .btn {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 20px;
    }

    .btn:hover {
        background: linear-gradient(135deg, #2980b9, #1f5d86);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    }

    .result-card {
        text-align: center;
        padding: 40px;
    }

    .score-display {
        font-size: 3em;
        font-weight: bold;
        color: #3498db;
        margin: 20px 0;
    }

    .result-type {
        font-size: 1.5em;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .result-description {
        font-size: 1.1em;
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }

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

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #2c3e50;
    }

    .form-input {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e1e8ed;
        border-radius: 8px;
        font-size: 1em;
        transition: border-color 0.3s ease;
    }

    .form-input:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

    .form-select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e1e8ed;
        border-radius: 8px;
        font-size: 1em;
        background: white;
        cursor: pointer;
    }

    .form-textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e1e8ed;
        border-radius: 8px;
        font-size: 1em;
        min-height: 100px;
        resize: vertical;
    }

    .checkbox-group {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .checkbox-group input[type="checkbox"] {
        margin-right: 10px;
        transform: scale(1.2);
    }

    .hidden {
        display: none;
    }

    .required {
        color: #e74c3c;
    }

    @media (max-width: 768px) {
        .container {
            padding: 10px;
        }
        
        .card {
            padding: 20px;
        }
        
        .header h1 {
            font-size: 2em;
        }
        
        .section {
            padding: 20px;
        }
    }