        :root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --light-color: #f5f5f5;
            --dark-color: #2c3e50;
            --text-color: #333;
            --white: #fff;
            --accent-color: #3498db;
            --telegram-color: #0088cc;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
        }
        
        .header-area {
            background: var(--dark-color) url(7b09d44c90349d3f13d053aec4c0dc07.jpg) center/cover no-repeat;
            padding: 100px 0;
            position: relative;
            margin-bottom: 40px;
        }
        
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: var(--white);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .article-container {
            background: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 30px 0 20px;
            line-height: 1.3;
            position: relative;
            padding-left: 15px;
        }
        
        h2:before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 5px;
            background-color: var(--accent-color);
            border-radius: 3px;
        }
        
        h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        ul, ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        li:before {
            content: "•";
            color: var(--accent-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .highlight {
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            margin: 20px 0;
            border-radius: 4px;
        }
        
        .warning-box {
            background-color: #fdeaea;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            border: 1px solid #f5c6cb;
        }
        
        .warning-title {
            color: #721c24;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        
        .warning-title:before {
            content: "⚠️";
            margin-right: 10px;
        }
        
        .causes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .cause-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-top: 3px solid var(--accent-color);
        }
        
        /* Стили для кнопки подписки на Telegram */
        .telegram-subscribe-container {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            text-align: center;
        }
        
        .telegram-subscribe-title {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 25px;
            line-height: 1.4;
            position: relative;
            padding-left: 15px;
            text-align: left;
        }
        
        .telegram-subscribe-title:before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 5px;
            background-color: var(--telegram-color);
            border-radius: 3px;
        }
        
        .telegram-subscribe-description {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 35px;
            line-height: 1.6;
            text-align: left;
        }
        
        .telegram-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--telegram-color);
            color: white;
            text-decoration: none;
            padding: 22px 40px;
            border-radius: 14px;
            font-size: 1.3rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
            border: none;
            cursor: pointer;
            min-width: 300px;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .telegram-button:hover {
            background-color: #0077b5;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
        }
        
        .telegram-button:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
        }
        
        .telegram-icon {
            width: 32px;
            height: 32px;
            margin-right: 15px;
            fill: currentColor;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
        }
        
        .telegram-button-text {
            font-size: 1.4rem;
            letter-spacing: 0.5px;
        }
        
        .telegram-subtitle {
            color: #666;
            margin-top: 25px;
            font-size: 1rem;
            font-style: italic;
            text-align: center;
        }
        
        .benefits-list {
            text-align: left;
            margin: 30px 0 40px;
            padding-left: 20px;
			list-style-type: none;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: var(--secondary-color);
            position: relative;
            padding-left: 35px;
        }
        
        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--telegram-color);
            font-weight: bold;
            font-size: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 25px;
            background-color: rgba(0, 136, 204, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        footer {
            background: var(--dark-color);
            color: var(--white);
            padding: 30px 0;
            text-align: center;
        }
        
        footer a {
            color: var(--white);
            text-decoration: underline;
            transition: opacity 0.3s;
        }
        
        footer a:hover {
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .header-area {
                padding: 60px 0;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .article-container {
                padding: 20px;
            }
            
            .telegram-subscribe-container {
                padding: 30px 20px;
            }
            
            .causes-grid {
                grid-template-columns: 1fr;
            }
            
            .telegram-subscribe-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
                padding-left: 12px;
                text-align: center;
            }
            
            .telegram-subscribe-title:before {
                left: 50%;
                transform: translateX(-50%);
                top: -10px;
                width: 60px;
                height: 5px;
                bottom: auto;
            }
            
            .telegram-subscribe-description {
                font-size: 1.1rem;
                margin-bottom: 25px;
                text-align: center;
            }
            
            .telegram-button {
                padding: 20px 30px;
                font-size: 1.2rem;
                min-width: 280px;
            }
            
            .telegram-icon {
                width: 28px;
                height: 28px;
                margin-right: 12px;
            }
            
            .telegram-button-text {
                font-size: 1.2rem;
            }
            
            .benefits-list {
                margin: 25px 0 30px;
                padding-left: 0;
            }
            
            .benefits-list li {
                padding-left: 35px;
                text-align: left;
            }
        }
        
        @media (max-width: 480px) {
            .telegram-button {
                padding: 18px 25px;
                min-width: 250px;
                font-size: 1.1rem;
            }
            
            .telegram-icon {
                width: 24px;
                height: 24px;
                margin-right: 10px;
            }
            
            .telegram-button-text {
                font-size: 1.1rem;
            }
            
            .benefits-list li {
                padding-left: 30px;
                font-size: 1rem;
            }
            
            .benefits-list li:before {
                width: 22px;
                height: 22px;
                font-size: 1rem;
            }
        }