    /* استایل مخصوص صفحه تماس با کومه - بهینه شده برای موبایل */
        * {
            box-sizing: border-box;
        }

        .content-page {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            width: 92%;
            max-width: 850px;
            margin: 60px auto;
            padding: 25px 20px;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            direction: rtl;
            max-height: 80vh;
            overflow-y: auto;
            line-height: 1.8;
        }

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

        .content-page p {
            color: #2d2d2d;
            line-height: 1.9;
            font-size: 15px;
            margin-bottom: 20px;
            text-align: justify;
            word-wrap: break-word;
        }

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

        .tour-section {
            background: rgba(76, 175, 80, 0.1);
            padding: 18px;
            border-radius: 18px;
            margin: 25px 0;
            border-right: 4px solid #4CAF50;
        }

        /* بهینه‌سازی بخش اطلاعات تماس برای موبایل */
        .contact-info {
            background: linear-gradient(145deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.02));
            padding: 15px;
            border-radius: 20px;
            margin: 25px 0;
            border: 1px solid rgba(76, 175, 80, 0.3);
            width: 100%;
            overflow: hidden;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 12px;
            background: rgba(255,255,255,0.9);
            border-radius: 15px;
            margin-bottom: 12px;
            font-size: 15px;
            transition: transform 0.2s;
            border: 1px solid rgba(76, 175, 80, 0.2);
            width: 100%;
            flex-wrap: wrap;  /* اجازه شکستن خط */
            word-break: break-word;  /* شکستن کلمات بلند */
        }

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

        .info-item:hover {
            transform: translateX(-3px);
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .info-icon {
            font-size: 24px;
            min-width: 40px;
            text-align: center;
            flex-shrink: 0;  /* جلوگیری از کوچک شدن آیکون */
        }

        .info-text-fa {
            color: #2d2d2d;
            font-size: 15px;
            font-weight: 500;
            white-space: nowrap;  /* ثابت ماندن برچسب فارسی */
            flex-shrink: 0;
        }

        .info-text {
            color: #2d2d2d;
            direction: ltr;
            text-align: left;
            font-size: 15px;
            word-break: break-all;  /* شکستن ایمیل و آدرس بلند */
            flex: 1;  /* پر کردن فضای باقیمانده */
            min-width: 120px;  /* حداقل عرض برای موبایل */
        }

        /* نسخه موبایل - چیدمان عمودی برای آیتم‌ها */
        @media screen and (max-width: 480px) {
            .content-page {
                width: 95%;
                padding: 20px 15px;
                margin: 40px auto;
            }

            .content-page h1 {
                font-size: 24px;
            }

            .info-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 15px;
            }

            .info-icon {
                font-size: 28px;
                min-width: auto;
                align-self: center;
                margin-bottom: 5px;
            }

            .info-text-fa {
                white-space: normal;
                font-size: 14px;
                margin-bottom: 3px;
            }

            .info-text {
                width: 100%;
                text-align: center;
                font-size: 16px;
                font-weight: 500;
                background: rgba(76, 175, 80, 0.05);
                padding: 10px;
                border-radius: 12px;
                min-width: auto;
                word-break: break-all;
            }

            /* آیتم شماره تلفن */
            .info-item:nth-child(3) .info-text {
                direction: ltr;
                font-size: 15px;
                letter-spacing: 1px;
            }

            /* آیتم آدرس */
            .info-item:last-child .info-text-fa {
                white-space: normal;
                text-align: center;
            }

            .info-item:last-child .info-text {
                display: none; /* حذف بخش خالی */
            }
        }

        /* برای صفحه‌های خیلی کوچک (زیر 360px) */
        @media screen and (max-width: 360px) {
            .info-text {
                font-size: 14px;
                padding: 8px;
            }

            .info-item:nth-child(3) .info-text {
                font-size: 13px;
            }
        }

        .contact-note {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 15px;
            margin: 25px 0 20px;
            font-size: 14px;
            color: #555;
            border: 1px dashed #ccc;
            text-align: center;
        }

        .back-to-home {
            display: inline-block;
            margin-top: 25px;
            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);
            width: auto;
            text-align: center;
        }

        .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: 5px;
        }

        .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;
        }
