 /* О магазине */
        .about-content {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        .about-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
            text-align: center;
        }
        .about-text {
            margin-bottom: 20px;
            font-size: 15px;
        }
        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        .feature-item {
            text-align: center;
            padding: 15px;
        }
        .feature-icon {
            font-size: 40px;
            color: #fbd303;
            margin-bottom: 10px;
        }
        .feature-title {
            font-weight: bold;
            margin-bottom: 10px;
        }


        @media (max-width: 768px) {
            


            .about-features {
                grid-template-columns: 1fr;
            }
        }
