     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazirmatn', sans-serif !important;
            background: #f8f9fa;
            min-height: 100vh;
            line-height: 1.6;
            color: #333;
        }

	
		container {
			
		}

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            gap: 40px;
			 margin-bottom: 200px !important; /* 100px فاصله از پایین دکمه */
        }

        .about-section {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            padding: 40px;
            text-align: right;
            animation: fadeIn 1s ease-in-out;
        }

        h1, h2, h3 {
            color: #2c2c54;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: bold;
        }

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        p, li {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        ul {
            list-style-type: disc;
            padding-right: 20px;
            margin-bottom: 20px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
  .contact-item i {
    font-size: 22px;
    margin-left: 8px;
    color: #6b46c1; /* رنگ پیش‌فرض عمومی */
}

/* رنگ اختصاصی برای هر آیکون */
.contact-item.telegram i {
    color: #0088cc; /* تلگرام */
}

.contact-item.instagram i {
    color: #E1306C; /* اینستاگرام */
}
.contact-item.email i {
    color: #ff8c00; /* نارنجی یا رنگ دلخواه */
}

        .contact-item a:hover + i, .contact-item i:hover {
            color: #553c9a;
        }

 .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color: #444 ;
    justify-content: flex-start; /* بچسبان به چپ */
    text-align: left;
    direction: ltr; /* چپ‌چین */
	
}
        }

        .contact-item a {
            color: #444 
            text-decoration: none;
            transition: color 0.3s ease;
			text-decoration: none;
        }

  

        .contact-item svg {
            width: 22px;
            height: 22px;
            fill: #6b46c1;
        }


        .buttons1 {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .btn1 {
            display: inline-block;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            background: linear-gradient(45deg, #6b46c1, #9f7aea);
            color: #ffffff !important;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
        }

        .btn1:hover {
            background: linear-gradient(45deg, #553c9a, #805ad5);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(107, 70, 193, 0.5);
        }

        hr {
            border: 0;
            height: 1px;
            background: #e0e0e0;
            margin: 30px 0;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .main-container {
                padding: 20px;
            }

            .about-section {
                padding: 30px;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.3rem;
            }

            p, li {
                font-size: 1rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .buttons1 {
                flex-direction: column;
                gap: 10px;
            }

            .btn1 {
                width: 100%;
                text-align: center;
            }
        }