
        /* استایل مخصوص صفحه قصه کومه */
        .content-page {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            width: 80%;
            max-width: 800px;
            margin: 100px auto;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            direction: rtl;
            max-height: 70vh;
            overflow-y: auto;
        }

        .content-page h1 {
            color: #4CAF50;
            margin-bottom: 30px;
            font-size: 28px;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 10px;
        }

        .content-page p {
            color: #333;
            line-height: 1.9;
            font-size: 16px;
            margin-bottom: 20px;
            text-align: justify;
        }

        .highlight {
            background: rgba(76, 175, 80, 0.1);
            padding: 2px 5px;
            border-radius: 5px;
            font-weight: 500;
            color: #2c5e2e;
        }

        .quote {
            border-right: 4px solid #4CAF50;
            padding-right: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #555;
            background: rgba(0,0,0,0.02);
            padding: 15px 25px 15px 15px;
            border-radius: 0 15px 15px 0;
        }

        .back-to-home {
            display: inline-block;
            margin-top: 30px;
            background: #4CAF50;
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .back-to-home:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
    