/* Pre Session Worksheet - Page-specific styles */

/* Page-specific styles */
        .section-title {
            font-size: 20px;
            margin-bottom: 20px;
            border-left: 4px solid #34495e;
            padding-left: 15px;
        }

        .section-intro {
            font-size: 15px;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .category {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }

        .category:hover {
            border-color: var(--accent-color);
            background: #f8f9fa;
        }

        .category-name {
            font-size: 13px;
            font-weight: 600;
            color: #34495e;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-words {
            font-size: 12px;
            color: #7f8c8d;
            line-height: 1.5;
        }

        .clothing-options {
            display: grid;
            gap: 12px;
            margin-top: 15px;
        }

        .clothing-option {
            display: flex;
            align-items: flex-start;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .clothing-option:hover {
            border-color: #34495e;
            background: #f8f9fa;
        }

        .clothing-option input[type="checkbox"] {
            margin-right: 12px;
            margin-top: 3px;
            cursor: pointer;
        }

        .clothing-option-content {
            flex: 1;
        }

        .clothing-option-title {
            font-weight: 600;
            color: #34495e;
            margin-bottom: 4px;
        }

        .clothing-option-description {
            font-size: 14px;
            color: #7f8c8d;
            line-height: 1.5;
        }

        .info-box {
            background: #ecf0f1;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .info-box p {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .info-box p:last-child {
            margin-bottom: 0;
        }

        .submit-section {
            margin-top: 50px;
            text-align: center;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 26px;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }
        }
