 /* استایل مخصوص صفحه درباره ما */
        .content-page {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            width: 85%;
            max-width: 850px;
            margin: 80px auto;
            padding: 45px;
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            direction: rtl;
            max-height: 75vh;
            overflow-y: auto;
            line-height: 2;
        }

        .content-page h1 {
            color: #4CAF50;
            margin-bottom: 30px;
            font-size: 32px;
            border-bottom: 3px solid #4CAF50;
            padding-bottom: 15px;
            font-weight: 600;
        }

        .content-page p {
            color: #2d2d2d;
            line-height: 2;
            font-size: 16.5px;
            margin-bottom: 22px;
            text-align: justify;
        }

        .highlight-green {
            color: #4CAF50;
            font-weight: 600;
        }

        .brand-box {
            background: linear-gradient(145deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.02));
            padding: 25px;
            border-radius: 20px;
            margin: 30px 0;
            border-right: 5px solid #4CAF50;
        }

        .brand-box p {
            margin-bottom: 12px;
        }

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

        .collab-section {
            background: rgba(0, 0, 0, 0.02);
            padding: 20px;
            border-radius: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #4a4a4a;
        }

        .cta-section {
            background: rgba(76, 175, 80, 0.1);
            padding: 20px 25px;
            border-radius: 50px;
            margin: 30px 0 20px;
            text-align: center;
            font-weight: 500;
            border: 1px dashed #4CAF50;
        }

        .back-to-home {
            display: inline-block;
            margin-top: 30px;
            background: #4CAF50;
            color: white;
            padding: 12px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        .back-to-home:hover {
            background: #45a049;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
        }

        /* اسکرول بار زیبا */
        .content-page::-webkit-scrollbar {
            width: 8px;
        }

        .content-page::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .content-page::-webkit-scrollbar-thumb {
            background: #4CAF50;
            border-radius: 10px;
        }

        .content-page::-webkit-scrollbar-thumb:hover {
            background: #45a049;
        }