.subscribe-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #BB0000;
            padding: 8px 15px;
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.0rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(187, 0, 0, 0.3);
            width: 50%;
        }
        
        .subscribe-btn:hover {
            background: #a30000;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(187, 0, 0, 0.4);
        }
        
        .subscribe-btn:active {
            transform: translateY(0);
        }
        
        .subscribe-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
		
		.benefit {
            
        
            
            font-size: 0.9rem;
            
        }
        
        .benefit i {
            color: #02b875;
            
        }
        
        @media (max-width: 768px) {
            .newsletter {
                padding: 40px 20px;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .benefits {
                flex-direction: column;
                align-items: center;
            }
        }