ul {
  list-style-type: none;
}

  .custom-arrows {
    list-style: none;
    padding-left: 0;
  }
  .custom-arrows li::before {
    content: "🔹 "; /* Синий ромбик */
    margin-right: 5px;
  }

        .attention-text {
            font-size: 26px;
            font-weight: bold;
            color: #d9534f;
            text-align: center;
            margin: 30px 0;
            padding: 15px;
            background-color: #fff3f3;
            border-radius: 0 5px 5px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .blink {
            animation: blink 1.0s linear infinite;
        }
        
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }





        .intro-text {
            font-size: 18px;
            color: #444;
            margin-bottom: 30px;
            padding: 15px;
            background-color: #e8f4fc;
            border-left: 4px solid #2a7bc8;
            border-radius: 0 5px 5px 0;
        }
        
        .highlight-block {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            border-radius: 0 5px 5px 0;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: 1px solid #e0e6ed;
            border-left: 4px solid #aeaeae;
        }
        
        .section-title {
            color: #d9534f;
            font-size: 22px;
            margin-top: 0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .section-title:before {
            content: "💥";
            margin-right: 10px;
            font-size: 24px;
        }
        
        .feature-list {
            padding-left: 20px;
			font-size:14px;
        }
        
        .feature-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
        }
        
        .feature-list li:before {
            content: "📌";
            position: absolute;
            left: 0;
        }
        
        .documents-section {
            background-color: #fff8e6;
            font-size:14px;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .documents-title {
            color: #d4a017;
            font-weight: bold;
            margin-top: 0;
        }
        
        .emoji {
            font-size: 20px;
            margin-right: 5px;
            vertical-align: middle;
        }

        .important-note {
            width:89%;
            background-color: #ffeef0;
            padding: 15px;
            margin: 25px 0;
            border-radius:5px;
            font-style: italic;
        }